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