diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-09-10 20:53:31 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-09-10 20:53:31 -0300 |
commit | 682578f3b307720c4535247cfdc662c0c2fb7114 (patch) | |
tree | 7821c30cb7bfbb3f5dcc73480c6a00f2591718a7 | |
parent | c7426717d38de36795906cb4f7c2c0297f88a7b3 (diff) |
more c++ include references removed
-rw-r--r-- | drivers/convex_decomp/b2Polygon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/convex_decomp/b2Polygon.cpp b/drivers/convex_decomp/b2Polygon.cpp index 668313967e..775f2adfe2 100644 --- a/drivers/convex_decomp/b2Polygon.cpp +++ b/drivers/convex_decomp/b2Polygon.cpp @@ -21,8 +21,8 @@ #include "b2Triangle.h" #include "b2Polygon.h" -#include <cmath> -#include <climits> +#include <math.h> +#include <limits.h> #include <assert.h> #define b2Assert assert |