Fix Mac build
Clang requires tighter forward declaration of derived enums
This commit is contained in:
parent
e793e30360
commit
4ed8b14c12
|
@ -34,7 +34,7 @@ class BOARD;
|
||||||
class SETTINGS_MANAGER;
|
class SETTINGS_MANAGER;
|
||||||
class BOARD_ITEM;
|
class BOARD_ITEM;
|
||||||
enum class EDA_UNITS;
|
enum class EDA_UNITS;
|
||||||
enum PCB_LAYER_ID;
|
enum PCB_LAYER_ID : int;
|
||||||
|
|
||||||
/* we could be including all these methods as static in a class, but
|
/* we could be including all these methods as static in a class, but
|
||||||
* we want plain pcbnew.<method_name> access from python
|
* we want plain pcbnew.<method_name> access from python
|
||||||
|
|
Loading…
Reference in New Issue