SoltestErrors: Qualify runtime_error with std:: to make it possible to use in in headers

This commit is contained in:
Kamil Śliwak 2021-04-26 23:53:36 +02:00
parent f72592549b
commit 28b9d27fae

View File

@ -25,7 +25,7 @@ namespace solidity::frontend::test
do \
{ \
if (!(CONDITION)) \
BOOST_THROW_EXCEPTION(runtime_error(DESCRIPTION)); \
BOOST_THROW_EXCEPTION(std::runtime_error(DESCRIPTION)); \
} \
while (false)