From 62fc1e13efdba94c8bd416f3ffa1394adb58fad3 Mon Sep 17 00:00:00 2001 From: Joshua Scott Date: Sun, 9 Dec 2018 23:28:40 +0000 Subject: [PATCH] util: Fix missing noexcept compile error on CI --- include/ki/util/exception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ki/util/exception.h b/include/ki/util/exception.h index 96d6756..8a91228 100644 --- a/include/ki/util/exception.h +++ b/include/ki/util/exception.h @@ -23,7 +23,7 @@ namespace ki m_what = oss.str(); } - char const* what() const override + char const* what() const noexcept override { return m_what.c_str(); }