* Fix some confusions between _WIN32 (any compiler/runtime on that platform)

and __MSVC__ (VC only, not e.g. mingw32)
This commit is contained in:
Chris Cannam
2010-05-04 11:14:26 +01:00
parent c5daafc067
commit 8b3a5e4979
3 changed files with 9 additions and 2 deletions

View File

@@ -41,6 +41,9 @@ using namespace RubberBand;
#ifdef _WIN32
using RubberBand::gettimeofday;
#endif
#ifdef __MSVC__
using RubberBand::usleep;
#endif