mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix MSVC warning.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15747 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7a0f75710d
commit
95b150fee5
@ -325,7 +325,7 @@ MathAtom createInsetMath(docstring const & s)
|
||||
case 'W':
|
||||
case 'H':
|
||||
case 'L':
|
||||
spacing_code = s[i];
|
||||
spacing_code = static_cast<char>(s[i]);
|
||||
++i;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user