MSVC compile fix

This commit is contained in:
Georg Baum 2014-03-09 18:18:17 +01:00
parent fc3d1bcbb4
commit a6f4aa2d18

View 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
}