From a6f4aa2d181ee24fc913e573d971b5556f78fd71 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sun, 9 Mar 2014 18:18:17 +0100 Subject: [PATCH] MSVC compile fix --- src/mathed/MathFactory.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 } -- 2.39.5