mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 05:31:16 +00:00
Include cmath instead of math.h in Collider.cpp (GCC 6 only)
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user