Fix Mac build

Clang requires tighter forward declaration of derived enums
This commit is contained in:
Seth Hillbrand 2023-10-17 09:26:00 -07:00
parent e793e30360
commit 4ed8b14c12
1 changed files with 1 additions and 1 deletions

View File

@ -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