From 57e53d577b914ca1a56d2a59a9dd48a450c573ce Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 17 Jul 2013 13:49:12 -0400 Subject: break symbol name cycle on non-win32-non-gcc platforms --- libs/pbd/ffs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/ffs.cc b/libs/pbd/ffs.cc index 8f7ecdb502..0a61969e8a 100644 --- a/libs/pbd/ffs.cc +++ b/libs/pbd/ffs.cc @@ -28,7 +28,7 @@ ffs (int x) #if defined(WIN32) && defined(__GNUC__) return __builtin_ffs(x); #else - return ffs(x); + return ::ffs(x); #endif } -- cgit v1.2.3