Include cstdlib to provide access to std::abs for integral types

This commit is contained in:
Luke Benstead 2017-04-07 13:12:12 +01:00
parent f924f70e76
commit 0af16fae5a

View File

@ -20,6 +20,7 @@
#define B3_MATH_H
#include <cmath>
#include <cstdlib> // For abs() with integral types
#include <bounce/common/settings.h>
inline bool b3IsValid(float32 fx)