Fixed typo in exception text

This commit is contained in:
Peter Klotz
2018-02-11 20:35:50 +01:00
parent e39a99c6f5
commit 80a2a12b7a

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);
}