13
0

Use round() instead of rintf() when building with MSVC

This commit is contained in:
John Emmas 2014-01-30 18:37:36 +00:00
parent e0b2764b91
commit bef4483611

View File

@ -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>