mirror of
https://github.com/AxioDL/amuse.git
synced 2025-10-09 11:29:06 +00:00
21 lines
231 B
C++
21 lines
231 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 ::log2;
|
|
using ::fabs;
|
|
}
|
|
#endif
|
|
|