Merge pull request #58 from pkl97/develop

Fixed typo in exception text
This commit is contained in:
jzmaddock
2018-05-06 11:44:45 +01:00
committed by GitHub

View File

@ -569,7 +569,7 @@ private:
//
static void raise_logic_error()
{
std::logic_error e("Attempt to access an uninitialzed boost::match_results<> class.");
std::logic_error e("Attempt to access an uninitialized boost::match_results<> class.");
boost::throw_exception(e);
}