Fix compil warning: do not use class instead of struct in forward declarations
This commit is contained in:
parent
46c4727783
commit
86be755c83
|
@ -33,7 +33,7 @@
|
|||
#include <list>
|
||||
#include <mutex>
|
||||
|
||||
class RAYSEG2D;
|
||||
struct RAYSEG2D;
|
||||
|
||||
typedef std::list<OBJECT_2D*> LIST_OBJECT2D;
|
||||
typedef std::list<const OBJECT_2D*> CONST_LIST_OBJECT2D;
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
|
||||
#include <plugins/3dapi/xv3d_types.h> // SFVEC2F
|
||||
|
||||
class RAY2D;
|
||||
class RAYSEG2D;
|
||||
struct RAY2D;
|
||||
struct RAYSEG2D;
|
||||
|
||||
/**
|
||||
* Manage a bounding box defined by two SFVEC2F min max points.
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <plugins/3dapi/xv3d_types.h> // SFVEC2F
|
||||
|
||||
class RAY;
|
||||
struct RAY;
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue