Changeset 135 for cpp/common/nonstd_math.cpp
- Timestamp:
- 02/17/14 12:32:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified cpp/common/nonstd_math.cpp ΒΆ
r122 r135 14 14 15 15 16 #if def _WIN32 //http://stackoverflow.com/questions/2170385/c-math-functions17 double round(double val) 16 #if defined __BORLANDC__ || (_MSC_VER <= 1700) 17 double round(double val) //http://stackoverflow.com/questions/2170385/c-math-functions 18 18 { 19 19 return floor(val + 0.5);
Note: See TracChangeset
for help on using the changeset viewer.