From: Georg Baum Date: Sun, 9 Mar 2014 17:18:17 +0000 (+0100) Subject: MSVC compile fix X-Git-Tag: 2.1.0rc1~64^2 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a6f4aa2d181ee24fc913e573d971b5556f78fd71;p=lyx.git MSVC compile fix --- diff --git a/src/mathed/MathFactory.cpp b/src/mathed/MathFactory.cpp index 274acd997f..24e35c9b68 100644 --- a/src/mathed/MathFactory.cpp +++ b/src/mathed/MathFactory.cpp @@ -135,6 +135,8 @@ bool isUnicodeSymbolAvailable(docstring const & name, char_type & c) is_combining, termination); } return c != 0 && !is_combining; +#else + return false; #endif }