From 6e4077eed2d25a5879390a27cda7d05f018f45c7 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 26 Jan 2020 20:38:24 +0100 Subject: [PATCH] Add JsonDeserializationErrors::ThrowOn::All --- lib/json/errorhandling.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/json/errorhandling.h b/lib/json/errorhandling.h index 720e0fa..a885ef6 100644 --- a/lib/json/errorhandling.h +++ b/lib/json/errorhandling.h @@ -171,7 +171,8 @@ struct JsonDeserializationErrors : public std::vector TypeMismatch = 0x1, ArraySizeMismatch = 0x2, ConversionError = 0x4, - UnexpectedDuplicate = 0x8 + UnexpectedDuplicate = 0x8, + All = 0xFF, } throwOn; private: