Solaris namespace clash fix
This commit is contained in:
parent
9d10d88f8f
commit
53aceeafe8
2 changed files with 2 additions and 4 deletions
|
@ -71,7 +71,7 @@ const double FGJSBBase::SHRatio = 1.40;
|
||||||
const string FGJSBBase::needed_cfg_version = "1.60";
|
const string FGJSBBase::needed_cfg_version = "1.60";
|
||||||
const string FGJSBBase::JSBSim_version = "0.9.4";
|
const string FGJSBBase::JSBSim_version = "0.9.4";
|
||||||
|
|
||||||
queue <FGJSBBase::Message*> FGJSBBase::Messages;
|
std::queue <FGJSBBase::Message*> FGJSBBase::Messages;
|
||||||
FGJSBBase::Message FGJSBBase::localMsg;
|
FGJSBBase::Message FGJSBBase::localMsg;
|
||||||
unsigned int FGJSBBase::messageId = 0;
|
unsigned int FGJSBBase::messageId = 0;
|
||||||
unsigned int FGJSBBase::frame = 0;
|
unsigned int FGJSBBase::frame = 0;
|
||||||
|
|
|
@ -45,7 +45,6 @@ INCLUDES
|
||||||
# include STL_STRING
|
# include STL_STRING
|
||||||
|
|
||||||
SG_USING_STD(string);
|
SG_USING_STD(string);
|
||||||
SG_USING_STD(queue);
|
|
||||||
|
|
||||||
# ifndef M_PI
|
# ifndef M_PI
|
||||||
# include <simgear/constants.h>
|
# include <simgear/constants.h>
|
||||||
|
@ -63,7 +62,6 @@ SG_USING_STD(queue);
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
using std::queue;
|
|
||||||
|
|
||||||
# ifndef M_PI
|
# ifndef M_PI
|
||||||
# define M_PI 3.14159265358979323846
|
# define M_PI 3.14159265358979323846
|
||||||
|
@ -221,7 +219,7 @@ public:
|
||||||
protected:
|
protected:
|
||||||
static Message localMsg;
|
static Message localMsg;
|
||||||
|
|
||||||
static queue <Message*> Messages;
|
static std::queue <Message*> Messages;
|
||||||
|
|
||||||
virtual void Debug(int from) {};
|
virtual void Debug(int from) {};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue