From 28b9d27fae8a60e7ab5684f5cfef1c55dcedf72c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Mon, 26 Apr 2021 23:53:36 +0200 Subject: [PATCH] SoltestErrors: Qualify runtime_error with std:: to make it possible to use in in headers --- test/libsolidity/util/SoltestErrors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libsolidity/util/SoltestErrors.h b/test/libsolidity/util/SoltestErrors.h index 3291692a8..e223f714b 100644 --- a/test/libsolidity/util/SoltestErrors.h +++ b/test/libsolidity/util/SoltestErrors.h @@ -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)