From 68081cd1129d5807132b6c1f1aceb074da310a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20DELRIEU?= Date: Sun, 15 Jan 2017 20:52:24 +0100 Subject: [PATCH] remove useless file --- src/json.hpp.re2c.rej | 98 ------------------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 src/json.hpp.re2c.rej diff --git a/src/json.hpp.re2c.rej b/src/json.hpp.re2c.rej deleted file mode 100644 index ab8fa89d..00000000 --- a/src/json.hpp.re2c.rej +++ /dev/null @@ -1,98 +0,0 @@ -diff a/src/json.hpp.re2c b/src/json.hpp.re2c (rejected hunks) -@@ -389,40 +389,30 @@ struct is_compatible_object_type - typename BasicJson::object_t, CompatibleObjectType>::value; - }; - --template --struct is_compatible_array_type_impl : std::false_type {}; -- --template --struct is_compatible_array_type_impl -+template -+struct is_basic_json_nested_type - { -- static constexpr auto value = -- not std::is_same::value and -- not std::is_same::value and -- not std::is_same::value and -- not std::is_same::value and -- not std::is_same::value and -- not std::is_same::value; -+ static auto constexpr value = std::is_same::value or -+ std::is_same::value or -+ std::is_same::value or -+ std::is_same::value or -+ std::is_same::value; - }; - - template - struct is_compatible_array_type - { -- // the check for CompatibleArrayType = void is done in -- // `is_compatible_object_type`, but we need the conjunction here as well -- static auto constexpr value = is_compatible_array_type_impl< -- conjunction>, -+ negation>, - negation>, -+ negation>, - has_value_type, -- has_iterator>::value, -- BasicJson, CompatibleArrayType>::value; -+ has_iterator>::value; - }; - - template -@@ -452,16 +442,6 @@ struct is_compatible_integer_type - RealIntegerType, CompatibleNumberIntegerType > ::value; - }; - --template --struct is_basic_json_nested_type --{ -- static auto constexpr value = std::is_same::value or -- std::is_same::value or -- std::is_same::value or -- std::is_same::value or -- std::is_same::value; --}; -- - // This trait checks if JSONSerializer::from_json(json const&, udt&) exists - template