The simgear function is about to get removed.
#include <iostream>
+#include <boost/algorithm/string/case_conv.hpp>
+
#include <simgear/math/sg_geodesy.hxx>
#include <simgear/timing/timestamp.hxx>
#include <simgear/debug/logstream.hxx>
-#include <simgear/misc/strutils.hxx>
#include "positioned.hxx"
{NULL, INVALID}
};
- std::string lowerName(simgear::strutils::convertToLowerCase(aName));
+ std::string lowerName(boost::to_lower_copy(aName));
for (const NameTypeEntry* n = names; (n->_name != NULL); ++n) {
if (::strcmp(n->_name, lowerName.c_str()) == 0) {