TD: Remove incorrect TODO

Closes #13410
This commit is contained in:
luzpaz
2024-04-13 08:08:22 -04:00
committed by wwmayer
parent a1194f5f57
commit 10d02c8a01

View File

@@ -120,7 +120,7 @@ std::string DrawUtil::getGeomTypeFromName(const std::string& geomName)
std::stringstream ErrorMsg;
if (boost::regex_search(begin, end, what, re, flags)) {
return what.str();//TODO: use std::stoi() in c++11
return what.str();
} else {
ErrorMsg << "In getGeomTypeFromName: malformed geometry name - " << geomName;
throw Base::ValueError(ErrorMsg.str());