File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ class OpenRoad
187187 int bloat_factor,
188188 bool bloat_occupied_layers);
189189
190+ void writeDef (const char * filename, const char * version);
190191 void writeDef (const char * filename,
191192 // major.minor (avoid including defout.h)
192193 const string& version);
Original file line number Diff line number Diff line change @@ -348,6 +348,11 @@ static odb::defout::Version stringToDefVersion(const string& version)
348348 return odb::defout::Version::DEF_5_8;
349349}
350350
351+ void OpenRoad::writeDef (const char * filename, const char * version)
352+ {
353+ writeDef (filename, std::string (version));
354+ }
355+
351356void OpenRoad::writeDef (const char * filename, const string& version)
352357{
353358 odb::dbChip* chip = db_->getChip ();
You can’t perform that action at this time.
0 commit comments