diff --git a/src/App/Range.cpp b/src/App/Range.cpp index fba197b0eb..25d80f2ef9 100644 --- a/src/App/Range.cpp +++ b/src/App/Range.cpp @@ -197,7 +197,7 @@ int App::validRow(const std::string &rowstr) bool App::validColumn( const std::string &colstr ) { - return std::regex_match(colstr, std::regex("[A-Z]{1,3}" )); + return boost::regex_match(colstr, boost::regex("[A-Z]{1,3}")); } /**