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
|
@ -358,3 +358,4 @@ bool Circuit::writeToFile(string filePath) {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -59,3 +59,4 @@ inline map<Name, Net*>::iterator Instance::getLastConnectorIt() { return _netMap
|
|||
|
||||
} // namespace
|
||||
#endif
|
||||
|
||||
|
|
|
@ -50,3 +50,4 @@ bool Name::operator<(const Name n) const {
|
|||
return (_id < n._id);
|
||||
}
|
||||
} // namespace
|
||||
|
||||
|
|
|
@ -41,3 +41,4 @@ const string& Name::getString() const{
|
|||
} // namespace
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -51,3 +51,4 @@ inline vector<pair<Name, Name> >::iterator Net::getLastConnectionIt() { return _
|
|||
|
||||
} // namespace
|
||||
#endif
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <algorithm>
|
||||
using namespace std;
|
||||
|
||||
#include "NetList.h"
|
||||
#include "Netlist.h"
|
||||
#include "Circuit.h"
|
||||
|
||||
namespace OpenChams {
|
|
@ -52,3 +52,4 @@ inline vector<Net*>::iterator Netlist::getLastNetIt() { return _nets.
|
|||
|
||||
} // namespace
|
||||
#endif
|
||||
|
|
@ -31,3 +31,4 @@ void Parameters::addParameter(Name name, double value) {
|
|||
_params[name] = value;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
|
|
|
@ -38,3 +38,4 @@ inline map<Name, double>::iterator Parameters::getLastIt() { return _params.end
|
|||
|
||||
} // namespace
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue