Browse Source

Tweak math.hpp includes again

pull/1639/head
Andrew Belt 7 years ago
parent
commit
26edda4ee8
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      include/util/math.hpp

+ 5
- 1
include/util/math.hpp View File

@@ -1,10 +1,14 @@
#pragma once
#include "util/common.hpp"
#include <cmath>
#include <math.h> // for global namespace functions
#include <cmath> // 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 {


Loading…
Cancel
Save