Fix compil warning: do not use class instead of struct in forward declarations

This commit is contained in:
jean-pierre charras 2021-01-06 09:29:03 +01:00
parent 46c4727783
commit 86be755c83
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

@ -32,7 +32,7 @@
#include <plugins/3dapi/xv3d_types.h> // SFVEC2F
class RAY;
struct RAY;
/**