From 95b150fee564701bccef9d2592dee654e8cbbe5f Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sun, 5 Nov 2006 12:22:05 +0000 Subject: [PATCH] Fix MSVC warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15747 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/MathFactory.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathFactory.C b/src/mathed/MathFactory.C index fbdf34220d..c57b557954 100644 --- a/src/mathed/MathFactory.C +++ b/src/mathed/MathFactory.C @@ -325,7 +325,7 @@ MathAtom createInsetMath(docstring const & s) case 'W': case 'H': case 'L': - spacing_code = s[i]; + spacing_code = static_cast(s[i]); ++i; break; }