Compile fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3788 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-03-20 12:14:41 +00:00
parent 92904c615a
commit 5a030c8153
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-03-18 Angus Leeming <a.leeming@ic.ac.uk>
* math_charinset.C: wrap the std::strchr declaration inside a
check for CXX_GLOBAL_CSTD.
2002-03-18 Angus Leeming <a.leeming@ic.ac.uk>
* math_biginset.[Ch] (size): return size_type, not int.

View File

@ -21,7 +21,10 @@
using std::ostream;
using std::endl;
#ifndef CXX_GLOBAL_CSTD
using std::strchr;
#endif
bool isBinaryOp(char c, MathTextCodes type)