Include cmath instead of math.h in Collider.cpp (GCC 6 only)

This commit is contained in:
trav90
2016-07-24 23:14:53 -05:00
committed by roytam1
parent 0da81c352d
commit cffc471202
+4
View File
@@ -26,7 +26,11 @@ of the License or (at your option) any later version.
*/
#include <algorithm>
#include <limits>
#if defined(__GNUC__) && (__GNUC__ >= 6)
#include <cmath>
#else
#include <math.h>
#endif
#include <string>
#include <functional>
#include "inc/Collider.h"