File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ namespace utl {
1010class Logger ;
1111}
1212namespace odb {
13- class BumpMapData ;
14- class BumpMapEntry ;
13+ struct BumpMapData ;
14+ struct BumpMapEntry ;
1515
1616class BmapParser
1717{
Original file line number Diff line number Diff line change @@ -124,12 +124,12 @@ struct DbxData
124124
125125struct BumpMapEntry
126126{
127- std::string bump_inst_name;
128- std::string bump_cell_type;
129- double x{0.0 };
130- double y{0.0 };
131- std::string port_name;
132- std::string net_name;
127+ const std::string bump_inst_name;
128+ const std::string bump_cell_type;
129+ const double x{0.0 };
130+ const double y{0.0 };
131+ const std::string port_name;
132+ const std::string net_name;
133133
134134 BumpMapEntry () = default ;
135135 BumpMapEntry (const std::string& inst_name,
@@ -153,4 +153,4 @@ struct BumpMapData
153153 std::vector<BumpMapEntry> entries;
154154};
155155
156- } // namespace odb
156+ } // namespace odb
You can’t perform that action at this time.
0 commit comments