diff --git a/include/util/math.hpp b/include/util/math.hpp index e776fafd..a57ec3eb 100644 --- a/include/util/math.hpp +++ b/include/util/math.hpp @@ -1,10 +1,14 @@ #pragma once #include "util/common.hpp" -#include +#include // for global namespace functions +#include // for std::isfinite, etc // Use a few standard math functions without std:: using std::isfinite; +using std::isinf; +using std::isnan; +using std::isnormal; namespace rack {