From 6b47221a6478b5d6276c7203df5e8bd12c2d9153 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 23 Oct 2018 17:03:58 +0200 Subject: [PATCH] added using std::isinf to hyper.h --- hyper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hyper.h b/hyper.h index fe090622..77843c0d 100644 --- a/hyper.h +++ b/hyper.h @@ -49,6 +49,7 @@ using std::unique_ptr; using std::abs; using std::isfinite; using std::isnan; +using std::isinf; using std::log; using std::exp; using std::sin;