1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 12:19:18 +00:00

hypot, asinh, and acosh are assumed to be in :: when NO_STD_HYPOT is specified

This commit is contained in:
Zeno Rogue 2018-07-23 14:07:18 +02:00
parent 12dd76b216
commit 3c6e3008eb

View File

@ -63,7 +63,7 @@ using std::sqrt;
using std::pow; using std::pow;
using std::floor; using std::floor;
using std::ceil; using std::ceil;
#ifndef ANDROID #ifndef NO_STD_HYPOT
using std::hypot; using std::hypot;
using std::asinh; using std::asinh;
using std::acosh; using std::acosh;