Changeset 492 for cpp/common
- Timestamp:
- 03/31/16 00:34:37 (9 years ago)
- Location:
- cpp/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/nonstd_math.cpp
r471 r492 14 14 15 15 16 #if defined __BORLANDC__ || (_MSC_VER <= 1700)16 #if (defined __BORLANDC__ || (_MSC_VER <= 1700)) & (!defined EMSCRIPTEN) 17 17 double round(double val) //http://stackoverflow.com/questions/2170385/c-math-functions 18 18 { -
cpp/common/nonstd_math.h
r286 r492 17 17 #endif 18 18 19 #if defined __BORLANDC__ || (_MSC_VER <= 1700)20 double round(double val); //http://stackoverflow.com/questions/2170385/c-math-functions19 #if (defined __BORLANDC__ || (_MSC_VER <= 1700)) & (!defined EMSCRIPTEN) 20 double round(double val); //http://stackoverflow.com/questions/2170385/c-math-functions 21 21 #endif 22 22
Note: See TracChangeset
for help on using the changeset viewer.