This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
Use cmath in math.hpp
pull/1639/head
Andrew Belt
7 years ago
parent
81c9e0856e
commit
b7b054fa6b
1 changed files
with
5 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-4
include/util/math.hpp
+ 5
- 4
include/util/math.hpp
View File
@@ -1,9 +1,10 @@
#pragma once
#include "util/common.hpp"
#ifndef _GLIBCXX_USE_C99_MATH
#define _GLIBCXX_USE_C99_MATH
#endif
#include <math.h>
#include <cmath>
// Use a few standard math functions without std::
using std::isfinite;
namespace rack {
Write
Preview
Loading…
Cancel
Save