remove boost pow stuff for uClibc-ng

It's available there.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-03-23 20:36:38 -07:00
parent e87454ae88
commit 9bad5ee3c5
3 changed files with 3 additions and 5 deletions

View File

@@ -31,15 +31,12 @@
#define MATH_HXX
#ifdef __UCLIBC__
#include <boost/math/special_functions/pow.hpp>
#include <boost/math/special_functions/round.hpp>
using boost::math::iround;
using boost::math::pow;
using boost::math::lround;
#define lrint iround
#else
#include <cmath>
using std::pow;
using std::lrint;
using std::lround;
#endif