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

To avoid a fatal error in MakeRealCode on SGI with gcc2.95, replace:

  Char_t* prefix   = (isMethod ? Form("%s::", classname) : "");
  Char_t* cv_qual  = (isMethod ? "" : "static ");
by
  const Char_t* prefix   = (isMethod ? Form("%s::", classname) : "");
  const Char_t* cv_qual  = (isMethod ? "" : "static ");


git-svn-id: http://root.cern.ch/svn/root/trunk@469 27541ba8-7e3a-0410-8455-c3a389f83636
parent 887b9263
No related branches found
No related tags found
Loading
Loading
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