MSVC++ bug work-around from Frederic Bouvier.

This commit is contained in:
david
2002-07-03 02:06:23 +00:00
parent 033c66363d
commit d6a790cf13

View File

@@ -19,6 +19,7 @@ using std::cerr;
using std::endl;
using std::find;
using std::sort;
using std::vector;
#else
@@ -29,6 +30,13 @@ SG_USING_STD(sort);
SG_USING_STD(find);
SG_USING_STD(vector);
#ifdef _MSC_VER
// MSVC is buggy, and needs something strange here
SG_USING_STD(vector<SGPropertyNode_ptr>);
SG_USING_STD(vector<SGPropertyChangeListener *>);
SG_USING_STD(vector<SGPropertyNode *>);
#endif
#endif