Skip to content

Commit bb5b6a9

Browse files
author
Ahmed R. Mohamed
committed
odb: fix BumpMapEntry declaration mismatch
src/odb/include/odb/3dblox.h forward declared BumpMapEntry as a class while its definition is a struct. Clang warned about it. Signed-off-by: Ahmed R. Mohamed <ahmed@precisioninno.com>
1 parent e152f8b commit bb5b6a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/odb/include/odb/3dblox.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ class Connection;
2424
class DesignDef;
2525
class dbChipRegionInst;
2626
class dbChipInst;
27-
class BumpMapEntry;
2827
class dbChipRegion;
2928
class dbBlock;
3029
class dbBTerm;
3130
class dbInst;
3231
class dbTech;
3332
class dbLib;
3433

34+
struct BumpMapEntry;
35+
3536
class ThreeDBlox
3637
{
3738
public:

0 commit comments

Comments
 (0)