Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
8d295235
Unverified
Commit
8d295235
authored
Jul 11, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🔥
remove unused boolean_operators.hpp header
parent
6477b9b2
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
47 deletions
+0
-47
boolean_operators.hpp
include/nlohmann/detail/boolean_operators.hpp
+0
-8
from_json.hpp
include/nlohmann/detail/conversions/from_json.hpp
+0
-1
to_chars.hpp
include/nlohmann/detail/conversions/to_chars.hpp
+0
-1
to_json.hpp
include/nlohmann/detail/conversions/to_json.hpp
+0
-1
iter_impl.hpp
include/nlohmann/detail/iterators/iter_impl.hpp
+0
-1
cpp_future.hpp
include/nlohmann/detail/meta/cpp_future.hpp
+0
-2
type_traits.hpp
include/nlohmann/detail/meta/type_traits.hpp
+0
-1
serializer.hpp
include/nlohmann/detail/output/serializer.hpp
+0
-1
value_t.hpp
include/nlohmann/detail/value_t.hpp
+0
-2
json.hpp
include/nlohmann/json.hpp
+0
-1
json.hpp
single_include/nlohmann/json.hpp
+0
-28
No files found.
include/nlohmann/detail/boolean_operators.hpp
deleted
100644 → 0
View file @
6477b9b2
#pragma once
// Header <ciso646> is removed in C++20.
// See <https://github.com/nlohmann/json/issues/2089> for more information.
#if __cplusplus <= 201703L
#include <ciso646> // and, not, or
#endif
include/nlohmann/detail/conversions/from_json.hpp
View file @
8d295235
...
...
@@ -12,7 +12,6 @@
#include <utility> // pair, declval
#include <valarray> // valarray
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/macro_scope.hpp>
#include <nlohmann/detail/meta/cpp_future.hpp>
...
...
include/nlohmann/detail/conversions/to_chars.hpp
View file @
8d295235
...
...
@@ -7,7 +7,6 @@
#include <limits> // numeric_limits
#include <type_traits> // conditional
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/macro_scope.hpp>
namespace
nlohmann
...
...
include/nlohmann/detail/conversions/to_json.hpp
View file @
8d295235
...
...
@@ -9,7 +9,6 @@
#include <valarray> // valarray
#include <vector> // vector
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/iterators/iteration_proxy.hpp>
#include <nlohmann/detail/meta/cpp_future.hpp>
#include <nlohmann/detail/meta/type_traits.hpp>
...
...
include/nlohmann/detail/iterators/iter_impl.hpp
View file @
8d295235
...
...
@@ -3,7 +3,6 @@
#include <iterator> // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next
#include <type_traits> // conditional, is_const, remove_const
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/iterators/internal_iterator.hpp>
#include <nlohmann/detail/iterators/primitive_iterator.hpp>
...
...
include/nlohmann/detail/meta/cpp_future.hpp
View file @
8d295235
...
...
@@ -3,8 +3,6 @@
#include <cstddef> // size_t
#include <type_traits> // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type
#include <nlohmann/detail/boolean_operators.hpp>
namespace
nlohmann
{
namespace
detail
...
...
include/nlohmann/detail/meta/type_traits.hpp
View file @
8d295235
...
...
@@ -4,7 +4,6 @@
#include <type_traits> // false_type, is_constructible, is_integral, is_same, true_type
#include <utility> // declval
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/iterators/iterator_traits.hpp>
#include <nlohmann/detail/macro_scope.hpp>
#include <nlohmann/detail/meta/cpp_future.hpp>
...
...
include/nlohmann/detail/output/serializer.hpp
View file @
8d295235
...
...
@@ -12,7 +12,6 @@
#include <type_traits> // is_same
#include <utility> // move
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/conversions/to_chars.hpp>
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/macro_scope.hpp>
...
...
include/nlohmann/detail/value_t.hpp
View file @
8d295235
...
...
@@ -5,8 +5,6 @@
#include <cstdint> // uint8_t
#include <string> // string
#include <nlohmann/detail/boolean_operators.hpp>
namespace
nlohmann
{
namespace
detail
...
...
include/nlohmann/json.hpp
View file @
8d295235
...
...
@@ -48,7 +48,6 @@ SOFTWARE.
#include <nlohmann/adl_serializer.hpp>
#include <nlohmann/byte_container_with_subtype.hpp>
#include <nlohmann/detail/boolean_operators.hpp>
#include <nlohmann/detail/conversions/from_json.hpp>
#include <nlohmann/detail/conversions/to_json.hpp>
#include <nlohmann/detail/exceptions.hpp>
...
...
single_include/nlohmann/json.hpp
View file @
8d295235
...
...
@@ -66,16 +66,6 @@ SOFTWARE.
#include <utility> // pair, declval
#include <valarray> // valarray
// #include <nlohmann/detail/boolean_operators.hpp>
// Header <ciso646> is removed in C++20.
// See <https://github.com/nlohmann/json/issues/2089> for more information.
#if __cplusplus <= 201703L
#include <ciso646> // and, not, or
#endif
// #include <nlohmann/detail/exceptions.hpp>
...
...
@@ -2556,9 +2546,6 @@ class other_error : public exception
#include <cstddef> // size_t
#include <type_traits> // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type
// #include <nlohmann/detail/boolean_operators.hpp>
namespace
nlohmann
{
namespace
detail
...
...
@@ -2624,8 +2611,6 @@ constexpr T static_const<T>::value;
#include <type_traits> // false_type, is_constructible, is_integral, is_same, true_type
#include <utility> // declval
// #include <nlohmann/detail/boolean_operators.hpp>
// #include <nlohmann/detail/iterators/iterator_traits.hpp>
...
...
@@ -3210,9 +3195,6 @@ struct is_constructible_tuple<T1, std::tuple<Args...>> : conjunction<std::is_con
#include <cstdint> // uint8_t
#include <string> // string
// #include <nlohmann/detail/boolean_operators.hpp>
namespace
nlohmann
{
namespace
detail
...
...
@@ -3681,8 +3663,6 @@ constexpr const auto& from_json = detail::static_const<detail::from_json_fn>::va
#include <valarray> // valarray
#include <vector> // vector
// #include <nlohmann/detail/boolean_operators.hpp>
// #include <nlohmann/detail/iterators/iteration_proxy.hpp>
...
...
@@ -4443,8 +4423,6 @@ class byte_container_with_subtype : public BinaryType
}
// namespace nlohmann
// #include <nlohmann/detail/boolean_operators.hpp>
// #include <nlohmann/detail/conversions/from_json.hpp>
// #include <nlohmann/detail/conversions/to_json.hpp>
...
...
@@ -10401,8 +10379,6 @@ template<typename BasicJsonType> struct internal_iterator
#include <iterator> // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next
#include <type_traits> // conditional, is_const, remove_const
// #include <nlohmann/detail/boolean_operators.hpp>
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/iterators/internal_iterator.hpp>
...
...
@@ -13946,8 +13922,6 @@ class binary_writer
#include <type_traits> // is_same
#include <utility> // move
// #include <nlohmann/detail/boolean_operators.hpp>
// #include <nlohmann/detail/conversions/to_chars.hpp>
...
...
@@ -13958,8 +13932,6 @@ class binary_writer
#include <limits> // numeric_limits
#include <type_traits> // conditional
// #include <nlohmann/detail/boolean_operators.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment