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

refs #4742. Fix missing header include.

parent 90eb7e74
No related merge requests found
......@@ -1728,9 +1728,6 @@ Quick check to determine if VATES is installed.
*/
bool ConfigServiceImpl::quickVatesCheck() const
{
using boost::regex;
using boost::regex_search;
std::string path = this->getDirectoryOfExecutable();
Poco::File dir(path);
......@@ -1744,8 +1741,8 @@ bool ConfigServiceImpl::quickVatesCheck() const
while(it != files.end())
{
std::string file = *it;
regex expression("^(VatesSimpleGui)", boost::regex::icase);
if(regex_search(file, expression))
boost::regex expression("^(VatesSimpleGui)", boost::regex::icase);
if(boost::regex_search(file, expression))
{
found = true;
break;
......
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