Synchronize forward declaration with definition
The actual definition uses "class", so the forward declarations should do so, too.
This commit is contained in:
parent
061a7b8450
commit
eeae8c741a
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
|
|
||||||
class OUTPUTFORMATTER;
|
class OUTPUTFORMATTER;
|
||||||
struct IO_ERROR;
|
class IO_ERROR;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -63,7 +63,7 @@ class PCB_LAYER_BOX_SELECTOR;
|
||||||
class NETLIST;
|
class NETLIST;
|
||||||
class REPORTER;
|
class REPORTER;
|
||||||
struct PARSE_ERROR;
|
struct PARSE_ERROR;
|
||||||
struct IO_ERROR;
|
class IO_ERROR;
|
||||||
class FP_LIB_TABLE;
|
class FP_LIB_TABLE;
|
||||||
|
|
||||||
namespace PCB { struct IFACE; } // KIFACE_I is in pcbnew.cpp
|
namespace PCB { struct IFACE; } // KIFACE_I is in pcbnew.cpp
|
||||||
|
|
Loading…
Reference in New Issue