From 52cfa235be3e992faed75d181f5694bf016b6526 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 2 Oct 2022 21:47:20 +0300 Subject: [PATCH] Update JSON.hpp --- module/Library/JSON.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module/Library/JSON.hpp b/module/Library/JSON.hpp index 5cad12d4..71ee202c 100644 --- a/module/Library/JSON.hpp +++ b/module/Library/JSON.hpp @@ -54,12 +54,12 @@ struct CtxJSON /* -------------------------------------------------------------------------------------------- * Default constructor. */ - CtxJSON() noexcept = default; + CtxJSON() = default; /* -------------------------------------------------------------------------------------------- * Explicit constructor. */ - explicit CtxJSON(bool ooa) noexcept + explicit CtxJSON(bool ooa) : CtxJSON() { mObjectOverArray = ooa; @@ -68,7 +68,7 @@ struct CtxJSON /* -------------------------------------------------------------------------------------------- * Explicit constructor. */ - CtxJSON(bool ooa, StackStrF & mmname) noexcept + CtxJSON(bool ooa, StackStrF & mmname) : CtxJSON() { mObjectOverArray = ooa; @@ -79,7 +79,7 @@ struct CtxJSON /* -------------------------------------------------------------------------------------------- * Internal constructor. */ - explicit CtxJSON(std::function< void(CtxJSON&) > && kh) noexcept + explicit CtxJSON(std::function< void(CtxJSON&) > && kh) : CtxJSON() { mKeyHook = std::move(kh);