Changeset 285
- Timestamp:
- 01/05/15 20:41:11 (10 years ago)
- Location:
- cpp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/nonstd_math.cpp
r247 r285 24 24 #ifdef IPHONE 25 25 //TODO! -> ? http://stackoverflow.com/questions/12762418/how-to-enable-sigfpe-signal-on-division-by-zero-in-ios-app 26 void fpExceptInit() 27 {} 28 29 void fpExceptEnable() 30 {} 31 32 void fpExceptDisable() 33 {} 34 #endif 35 36 #ifdef MACOS 37 //TODO...? 38 26 39 void fpExceptInit() 27 40 {} -
cpp/common/random.h
r247 r285 13 13 #include <fcntl.h> 14 14 #endif 15 #if def __BORLANDC__16 #include <stdint.h> //uintptr_t in borland 15 #if defined(__BORLANDC__) || defined(MACOS) 16 #include <stdint.h> //uintptr_t in borland and mac os 17 17 #endif 18 18 #ifdef _WIN32 -
cpp/frams/canvas/nn_smart_layout.cpp
r247 r285 8 8 #ifdef __BORLANDC__ 9 9 #include <alloc.h> //borland needs for alloc/free 10 #endif 11 #ifdef MACOS 12 #include <stdlib.h> 10 13 #endif 11 14
Note: See TracChangeset
for help on using the changeset viewer.