Changeset 20311

Show
Ignore:
Timestamp:
06/20/07 07:28:07 (1 year ago)
Author:
patrick
Message:

Bring the Visual C++ 8.0 stdext namespace into std in the same manner that
we do for gnu_cxx.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/vapor/vpr/vprConfig.h

    r19729 r20311  
    109109{ 
    110110   using namespace __gnu_cxx; 
     111} 
     112 
     113/* 
     114 * Visual C++ 8.0 and beyond have non-standard STL stuff in the stdext 
     115 * namespace. The code below works around that behavior by bringing the 
     116 * stdext namespace into the std namespace. 
     117 */ 
     118#elif defined(_MSC_VER) && _MSC_VER >= 14 
     119namespace std 
     120{ 
     121   using namespace stdext; 
    111122} 
    112123#endif