From 47231dfd92282fe0ca66cf0f66fc503bf2c5d670 Mon Sep 17 00:00:00 2001 From: lisyarus Date: Fri, 25 Feb 2022 18:49:27 +0300 Subject: [PATCH] Mark util::not_implemented as noreturn --- libs/util/include/psemek/util/not_implemented.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/util/include/psemek/util/not_implemented.hpp b/libs/util/include/psemek/util/not_implemented.hpp index 365492fb..15a9869d 100644 --- a/libs/util/include/psemek/util/not_implemented.hpp +++ b/libs/util/include/psemek/util/not_implemented.hpp @@ -3,6 +3,6 @@ namespace psemek::util { - void not_implemented(); + [[noreturn]] void not_implemented(); }