Fix validation warnings for components.

This commit is contained in:
Gunnar Beutner 2013-07-02 09:58:26 +02:00
parent 184f503c2a
commit 4637bc1ca6
1 changed files with 4 additions and 4 deletions

View File

@ -52,15 +52,15 @@ static bool LoadConfigFiles(bool validateOnly)
ConfigCompilerContext::SetContext(&context); ConfigCompilerContext::SetContext(&context);
BOOST_FOREACH(const String& configPath, g_AppParams["config"].as<std::vector<String> >()) {
ConfigCompiler::CompileFile(configPath);
}
String name, fragment; String name, fragment;
BOOST_FOREACH(boost::tie(name, fragment), ConfigFragmentRegistry::GetInstance()->GetItems()) { BOOST_FOREACH(boost::tie(name, fragment), ConfigFragmentRegistry::GetInstance()->GetItems()) {
ConfigCompiler::CompileText(name, fragment); ConfigCompiler::CompileText(name, fragment);
} }
BOOST_FOREACH(const String& configPath, g_AppParams["config"].as<std::vector<String> >()) {
ConfigCompiler::CompileFile(configPath);
}
ConfigCompilerContext::SetContext(NULL); ConfigCompilerContext::SetContext(NULL);
bool hasError = false; bool hasError = false;