Skip to content
Snippets Groups Projects
Commit b8112b14 authored by Rene Brun's avatar Rene Brun
Browse files

From Axel:

workaround a silly MSVC bug.


git-svn-id: http://root.cern.ch/svn/root/trunk@17780 27541ba8-7e3a-0410-8455-c3a389f83636
parent faa7de8f
No related branches found
No related tags found
No related merge requests found
...@@ -538,7 +538,7 @@ void TDocLatexDirective::CreateLatex(const char* filename) ...@@ -538,7 +538,7 @@ void TDocLatexDirective::CreateLatex(const char* filename)
if (!str) continue; if (!str) continue;
char align = 'l'; char align = 'l';
if ((UInt_t)fAlignment.Length() > iCol) if ((UInt_t)fAlignment.Length() > iCol)
align = fAlignment[iCol]; align = fAlignment[(Int_t)iCol];
Float_t x = posX[iCol]; Float_t x = posX[iCol];
switch (align) { switch (align) {
case 'l': break; case 'l': break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment