Skip to content
Snippets Groups Projects
Commit 8342d9df authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #5923. Fix warning.

parent 2bd626d1
No related merge requests found
......@@ -1692,7 +1692,6 @@ const std::string extractVersionNumberFromPipe(const Poco::Pipe& pipe)
const std::string givenVersion = stringStream.str();
boost::smatch match;
boost::regex expression("(\\d+)\\.(\\d+)$"); // Gets the version number part.
double givenVersionNumber;
if(boost::regex_search(givenVersion, match, expression))
{
versionString = match[0];
......
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