Home » U++ Library support » U++ Core » VC2010
VC2010 [message #24871] |
Tue, 02 February 2010 09:56  |
|
If anyone is using VC2010 and have problems with compiling core lib please change this line in Core.h:
#ifndef STLPORT
inline UPP::int64 abs(UPP::int64 x) { return x < 0 ? -x : x; }
#endif
to
#if !defined STLPORT && !defined _INC_STDLIB
inline UPP::int64 abs(UPP::int64 x) { return x < 0 ? -x : x; }
#endif
|
|
|
Goto Forum:
Current Time: Thu May 01 05:37:16 CEST 2025
Total time taken to generate the page: 0.00800 seconds
|