Skip to content
Snippets Groups Projects
Commit c9c6f415 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Bugifx in missed string header headed for WinBuild.

parent c7b41120
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
// for toupper // for toupper
#include <algorithm> #include <algorithm>
#include <functional> #include <functional>
#include <string>
#include <ctype.h> // need to use c version of tolower defined here #include <ctype.h> // need to use c version of tolower defined here
namespace ROOT { namespace ROOT {
...@@ -69,7 +70,7 @@ namespace GenAlgoOptUtil { ...@@ -69,7 +70,7 @@ namespace GenAlgoOptUtil {
const OptionsMap & gOpts = GenAlgoOptUtil::gAlgoOptions; const OptionsMap & gOpts = GenAlgoOptUtil::gAlgoOptions;
for ( OptionsMap::const_iterator pos = gOpts.begin(); for ( OptionsMap::const_iterator pos = gOpts.begin();
pos != gOpts.end(); ++pos) { pos != gOpts.end(); ++pos) {
os << "Default specific options for algorithm " << pos->first << " : " << std::endl; os << std::string("Default specific options for algorithm ") << pos->first << std::string(" : ") << std::endl;
(pos->second).Print(os); (pos->second).Print(os);
} }
} }
......
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