From d9470fd3b481fa12fcc47c272319c00686a1a92b Mon Sep 17 00:00:00 2001 From: Eduardo Ramos Testillano Date: Tue, 25 Jun 2013 03:19:44 +0200 Subject: [PATCH] New Environment core class --- source/core/util/Environment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/util/Environment.cpp b/source/core/util/Environment.cpp index 83ed2f8..c00d9a5 100644 --- a/source/core/util/Environment.cpp +++ b/source/core/util/Environment.cpp @@ -112,7 +112,7 @@ std::string Environment::getValue(const char* variableName, bool exceptionIfMiss std::map::const_iterator it = a_managedVars.find(variableName); - if(it == a_managedVars.end()) { + if (it == a_managedVars.end()) { std::string msg = "The variable '"; msg += variableName; msg += "' is not defined in the environment."; -- 2.20.1