13
0

break symbol name cycle on non-win32-non-gcc platforms

This commit is contained in:
Paul Davis 2013-07-17 13:49:12 -04:00
parent ab628ae3c3
commit 57e53d577b

View File

@ -28,7 +28,7 @@ ffs (int x)
#if defined(WIN32) && defined(__GNUC__)
return __builtin_ffs(x);
#else
return ffs(x);
return ::ffs(x);
#endif
}