| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*-------------------------------------------------------------------------
- This source file is a part of OGRE
- (Object-oriented Graphics Rendering Engine)
- For the latest info, see http://www.ogre3d.org/
- Copyright (c) 2000-2011 Torus Knot Software Ltd
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE
- -------------------------------------------------------------------------*/
- #ifndef __OgreHeaderPrefix_H__
- #define __OgreHeaderPrefix_H__
- #include "OgrePrerequisites.h"
- #if OGRE_COMPILER == OGRE_COMPILER_MSVC
- // Save warnings state
- # pragma warning (push)
- // Turn off warnings generated by long std templates
- // This warns about truncation to 255 characters in debug/browse info
- # pragma warning (disable : 4786)
- // Turn off warnings generated by long std templates
- // This warns about truncation to 255 characters in debug/browse info
- # pragma warning (disable : 4503)
- // disable: "<type> needs to have dll-interface to be used by clients'
- // Happens on STL member variables which are not public therefore is ok
- # pragma warning (disable : 4251)
- // disable: "non dll-interface class used as base for dll-interface class"
- // Happens when deriving from Singleton because bug in compiler ignores
- // template export
- # pragma warning (disable : 4275)
- // disable: "C++ Exception Specification ignored"
- // This is because MSVC 6 did not implement all the C++ exception
- // specifications in the ANSI C++ draft.
- # pragma warning( disable : 4290 )
- // disable: "no suitable definition provided for explicit template
- // instantiation request" Occurs in VC7 for no justifiable reason on all
- // #includes of Singleton
- # pragma warning( disable: 4661)
- // disable: deprecation warnings when using CRT calls in VC8
- // These show up on all C runtime lib code in VC8, disable since they clutter
- // the warnings with things we may not be able to do anything about (e.g.
- // generated code from nvparse etc). I doubt very much that these calls
- // will ever be actually removed from VC anyway, it would break too much code.
- # pragma warning( disable: 4996)
- // disable: "conditional expression constant", always occurs on
- // OGRE_MUTEX_CONDITIONAL when no threading enabled
- # pragma warning (disable : 201)
- // disable: "unreferenced formal parameter"
- // Many versions of VC have bugs which generate this error in cases where they shouldn't
- # pragma warning (disable : 4100)
- #endif
- #endif
|