]> git.lyx.org Git - features.git/commitdiff
MSVC compile fix
authorGeorg Baum <baum@lyx.org>
Sun, 9 Mar 2014 17:18:17 +0000 (18:18 +0100)
committerGeorg Baum <baum@lyx.org>
Sun, 9 Mar 2014 17:19:01 +0000 (18:19 +0100)
src/mathed/MathFactory.cpp

index 274acd997f390cf4d9b2c1d49d7feb23aafd5a0e..24e35c9b68911a74ae57d676b0ab8099abba953e 100644 (file)
@@ -135,6 +135,8 @@ bool isUnicodeSymbolAvailable(docstring const & name, char_type & c)
                                                is_combining, termination);
        }
        return c != 0 && !is_combining;
+#else
+       return false;
 #endif
 }