mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +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__)
|
#if defined(WIN32) && defined(__GNUC__)
|
||||||
return __builtin_ffs(x);
|
return __builtin_ffs(x);
|
||||||
#else
|
#else
|
||||||
return ffs(x);
|
return ::ffs(x);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue