From 3c6e3008eb42cc43c8271c9e42d870c5dff3be4c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 23 Jul 2018 14:07:18 +0200 Subject: [PATCH] hypot, asinh, and acosh are assumed to be in :: when NO_STD_HYPOT is specified --- hyper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyper.h b/hyper.h index 4a6392c3..4da606e4 100644 --- a/hyper.h +++ b/hyper.h @@ -63,7 +63,7 @@ using std::sqrt; using std::pow; using std::floor; using std::ceil; -#ifndef ANDROID +#ifndef NO_STD_HYPOT using std::hypot; using std::asinh; using std::acosh;