Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2008, 9:39:57 PM (16 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/core/Functor.h

    r1062 r1064  
    429429
    430430
    431 
     431// disable annoying warning about forcing value to boolean
     432#if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC
     433#pragma warning(push)
     434#pragma warning(disable:4100 4800)
     435#endif
    432436
    433437#define CREATE_ALL_STATIC_FUNCTORS() \
     
    465469}
    466470
     471#if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC
     472#pragma warning(pop)
     473#endif
     474
    467475#endif /* _Functor_H__ */
Note: See TracChangeset for help on using the changeset viewer.