Use round() instead of rintf() when building with MSVC
This commit is contained in:
parent
e0b2764b91
commit
bef4483611
@ -21,6 +21,10 @@
|
||||
#include "gtk2ardour-config.h"
|
||||
#endif
|
||||
|
||||
#ifdef COMPILER_MSVC
|
||||
#define rintf(x) round((x) + 0.5)
|
||||
#endif
|
||||
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <set>
|
||||
|
Loading…
Reference in New Issue
Block a user