Bug correction:
NetList.cpp -> Netlist.cpp NetList.h -> Netlist.h Added newlines at end of files needed it
This commit is contained in:
parent
faceb1f169
commit
53b89a61dc
|
@ -357,4 +357,5 @@ bool Circuit::writeToFile(string filePath) {
|
|||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -58,4 +58,5 @@ inline map<Name, Net*>::iterator Instance::getFirstConnectorIt() { return _netMa
|
|||
inline map<Name, Net*>::iterator Instance::getLastConnectorIt() { return _netMap.end(); };
|
||||
|
||||
} // namespace
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
@ -49,4 +49,5 @@ bool Name::operator==(const string& str) {
|
|||
bool Name::operator<(const Name n) const {
|
||||
return (_id < n._id);
|
||||
}
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
|
|
|
@ -40,4 +40,5 @@ const string& Name::getString() const{
|
|||
|
||||
} // namespace
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
@ -50,4 +50,5 @@ inline vector<pair<Name, Name> >::iterator Net::getFirstConnectionIt() { return
|
|||
inline vector<pair<Name, Name> >::iterator Net::getLastConnectionIt() { return _connections.end();};
|
||||
|
||||
} // namespace
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <algorithm>
|
||||
using namespace std;
|
||||
|
||||
#include "NetList.h"
|
||||
#include "Netlist.h"
|
||||
#include "Circuit.h"
|
||||
|
||||
namespace OpenChams {
|
||||
|
@ -50,4 +50,4 @@ Net* Netlist::getNet(Name netName) {
|
|||
}
|
||||
return NULL;
|
||||
}
|
||||
} // namespace
|
||||
} // namespace
|
|
@ -51,4 +51,5 @@ inline vector<Net*>::iterator Netlist::getFirstNetIt() { return _nets.
|
|||
inline vector<Net*>::iterator Netlist::getLastNetIt() { return _nets.end(); }
|
||||
|
||||
} // namespace
|
||||
#endif
|
||||
#endif
|
||||
|
|
@ -30,4 +30,5 @@ void Parameters::addParameter(Name name, double value) {
|
|||
}
|
||||
_params[name] = value;
|
||||
}
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
|
|
|
@ -37,4 +37,5 @@ inline map<Name, double>::iterator Parameters::getFirstIt() { return _params.beg
|
|||
inline map<Name, double>::iterator Parameters::getLastIt() { return _params.end(); }
|
||||
|
||||
} // namespace
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue