provide some Keyboard:: methods to get access to other versions of modifier names
[ardour.git] / libs / pbd / ffs.cc
index 48a417c4f58d58caf3ffa93abee5445213be0ee7..1ca913c54c3234710fda0cd0e9b396142c760c43 100644 (file)
@@ -31,7 +31,7 @@ ffs (int x)
        return __builtin_ffs(x);
 #elif defined (COMPILER_MSVC)
        unsigned long index;
-#ifdef WIN64   
+#ifdef WIN64
        if (0 != _BitScanForward64(&index, (__int64)x))
 #else
        if (0 != _BitScanForward(&index, (unsigned long)x))