Changeset 3242
- Timestamp:
- 08/06/04 07:25:21 (9 years ago)
- Location:
- OpenSceneGraph/trunk
- Files:
-
- 3 modified
-
examples/osgdem/osgdem.cpp (modified) (1 diff)
-
examples/osgpointsprite/osgpointsprite.cpp (modified) (1 diff)
-
include/osgTerrain/DataSet (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgdem/osgdem.cpp
r3151 r3242 9 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 10 */ 11 12 #ifdef WIN32 13 14 ///////////////////////////////////////////////////////////////////////////// 15 // Disable unavoidable warning messages: 16 17 // 4114: same type qualifier used more than once 18 // 4201: nonstandard extension used : nameless struct/union 19 // 4237: "keyword" reserved for future use 20 // 4251: class needs to have dll-interface to export class 21 // 4275: non DLL-interface class used as base for DLL-interface class 22 // 4290: C++ Exception Specification ignored 23 // 4503: ecorated name length exceeded, name was truncated 24 // 4786: string too long - truncated to 255 characters 25 26 //#pragma warning(disable : 4103 4114 4201 4237 4251 4275 4290 4335 4786) 27 #pragma warning(disable : 4503) 28 29 #endif // WIN32 11 30 12 31 #include <osg/Texture2D> -
OpenSceneGraph/trunk/examples/osgpointsprite/osgpointsprite.cpp
r2771 r3242 93 93 viewer.frame(); 94 94 } 95 96 return(0); 95 97 } 96 98 -
OpenSceneGraph/trunk/include/osgTerrain/DataSet
r3222 r3242 11 11 * OpenSceneGraph Public License for more details. 12 12 */ 13 14 #ifdef WIN32 15 16 ///////////////////////////////////////////////////////////////////////////// 17 // Disable unavoidable warning messages: 18 // 19 // C4503 - decorated name length exceeded, name was truncated 20 // 21 #pragma warning(disable : 4503) 22 23 #endif // WIN32 13 24 14 25 #ifndef DATASET_H
