Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2008, 9:39:57 PM (17 years ago)
Author:
rgrieder
Message:
  • replaced all String2Number with ConvertValue
  • replaced all tokenize with SubString
  • dealt with warnings under msvc
  • removed some warnings by placing casts
  • bugfix in audio: local variable pushed into member variable std::vector
  • updated StableHeaders.h
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/util/MultiTypeMath.h

    r1056 r1064  
    3535#include "MultiTypeString.h"
    3636#include "Math.h"
     37
     38// disable annoying warning about multiple assignment operators
     39#if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC
     40#pragma warning(push)
     41#pragma warning(disable:4522)
     42#endif
    3743
    3844class _UtilExport MultiTypeMath : public MultiTypeString
     
    160166_UtilExport std::ostream& operator<<(std::ostream& out, MultiTypeMath& mtm);
    161167
     168#if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC
     169#pragma warning(pop)
     170#endif
     171
    162172#endif /* _MultiTypeMath_H__ */
Note: See TracChangeset for help on using the changeset viewer.