From 456702e00931f88d35405b7995a2008d65b49647 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 3 Nov 2019 22:38:27 +0100 Subject: [PATCH] Remove unused std::monostate handling This wasn't useful after all. --- lib/json/errorhandling.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/json/errorhandling.h b/lib/json/errorhandling.h index fc42a8d..720e0fa 100644 --- a/lib/json/errorhandling.h +++ b/lib/json/errorhandling.h @@ -14,7 +14,6 @@ #include #include #include -#include #include namespace ReflectiveRapidJSON { @@ -53,11 +52,6 @@ constexpr JsonType jsonType() return JsonType::Number; } -template > * = nullptr> constexpr JsonType jsonType() -{ - return JsonType::Null; -} - template > * = nullptr> constexpr JsonType jsonType() { return JsonType::Bool;