mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
break symbol name cycle on non-win32-non-gcc platforms
This commit is contained in:
parent
ab628ae3c3
commit
57e53d577b
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ ffs (int x)
|
|||
#if defined(WIN32) && defined(__GNUC__)
|
||||
return __builtin_ffs(x);
|
||||
#else
|
||||
return ffs(x);
|
||||
return ::ffs(x);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue