Skip to content
Snippets Groups Projects
Commit bc50b7e8 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

move slightly forward initialization of dictionaries to avoid tons of warning

when running with statically linked module on OSX.


git-svn-id: http://root.cern.ch/svn/root/trunk@39647 27541ba8-7e3a-0410-8455-c3a389f83636
parent dcbefcd0
No related branches found
No related tags found
No related merge requests found
......@@ -175,6 +175,11 @@ TApplication::TApplication(const char *appClassName,
fAppRemote = 0;
ResetBit(kProcessRemotely);
// Make sure all registered dictionaries have been initialized
// and that all types have been loaded
gInterpreter->InitializeDictionaries();
gInterpreter->UpdateListOfTypes();
// Enable autoloading
gInterpreter->EnableAutoLoading();
......@@ -184,11 +189,6 @@ TApplication::TApplication(const char *appClassName,
InitializeGraphics();
}
// Make sure all registered dictionaries have been initialized
// and that all types have been loaded
gInterpreter->InitializeDictionaries();
gInterpreter->UpdateListOfTypes();
// Save current interpreter context
gInterpreter->SaveContext();
gInterpreter->SaveGlobalsContext();
......
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