amuse/include/switch_math.hpp

19 lines
235 B
C++

#pragma once
/* Properly forward math defines to std:: */
#ifdef __SWITCH__
#include <cmath>
#include <cfloat>
#undef exp2
#undef log2
#undef fabs
namespace std {
using ::exp2;
using ::fabs;
using ::log2;
} // namespace std
#endif