Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
d21d2983
Unverified
Commit
d21d2983
authored
Mar 28, 2019
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🎨
fixed indentation
parent
23635704
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
101 additions
and
99 deletions
+101
-99
include/nlohmann/detail/iterators/iterator_traits.hpp
include/nlohmann/detail/iterators/iterator_traits.hpp
+17
-15
include/nlohmann/detail/meta/is_sax.hpp
include/nlohmann/detail/meta/is_sax.hpp
+84
-84
No files found.
include/nlohmann/detail/iterators/iterator_traits.hpp
View file @
d21d2983
...
@@ -13,10 +13,11 @@ template <typename It, typename = void>
...
@@ -13,10 +13,11 @@ template <typename It, typename = void>
struct
iterator_types
{};
struct
iterator_types
{};
template
<
typename
It
>
template
<
typename
It
>
struct
iterator_types
<
struct
iterator_types
<
It
,
It
,
void_t
<
typename
It
::
difference_type
,
typename
It
::
value_type
,
typename
It
::
pointer
,
void_t
<
typename
It
::
difference_type
,
typename
It
::
value_type
,
typename
It
::
pointer
,
typename
It
::
reference
,
typename
It
::
iterator_category
>>
{
typename
It
::
reference
,
typename
It
::
iterator_category
>>
{
using
difference_type
=
typename
It
::
difference_type
;
using
difference_type
=
typename
It
::
difference_type
;
using
value_type
=
typename
It
::
value_type
;
using
value_type
=
typename
It
::
value_type
;
using
pointer
=
typename
It
::
pointer
;
using
pointer
=
typename
It
::
pointer
;
...
@@ -32,13 +33,14 @@ struct iterator_traits
...
@@ -32,13 +33,14 @@ struct iterator_traits
};
};
template
<
typename
T
>
template
<
typename
T
>
struct
iterator_traits
<
T
,
enable_if_t
<!
std
::
is_pointer
<
T
>::
value
>>
struct
iterator_traits
<
T
,
enable_if_t
<
!
std
::
is_pointer
<
T
>::
value
>>
:
iterator_types
<
T
>
:
iterator_types
<
T
>
{
{
};
};
template
<
typename
T
>
template
<
typename
T
>
struct
iterator_traits
<
T
*
,
enable_if_t
<
std
::
is_object
<
T
>::
value
>>
{
struct
iterator_traits
<
T
*
,
enable_if_t
<
std
::
is_object
<
T
>::
value
>>
{
using
iterator_category
=
std
::
random_access_iterator_tag
;
using
iterator_category
=
std
::
random_access_iterator_tag
;
using
value_type
=
T
;
using
value_type
=
T
;
using
difference_type
=
ptrdiff_t
;
using
difference_type
=
ptrdiff_t
;
...
...
include/nlohmann/detail/meta/is_sax.hpp
View file @
d21d2983
...
@@ -24,43 +24,43 @@ using number_integer_function_t =
...
@@ -24,43 +24,43 @@ using number_integer_function_t =
template
<
typename
T
,
typename
Unsigned
>
template
<
typename
T
,
typename
Unsigned
>
using
number_unsigned_function_t
=
using
number_unsigned_function_t
=
decltype
(
std
::
declval
<
T
&>
().
number_unsigned
(
std
::
declval
<
Unsigned
>
()));
decltype
(
std
::
declval
<
T
&>
().
number_unsigned
(
std
::
declval
<
Unsigned
>
()));
template
<
typename
T
,
typename
Float
,
typename
String
>
template
<
typename
T
,
typename
Float
,
typename
String
>
using
number_float_function_t
=
decltype
(
std
::
declval
<
T
&>
().
number_float
(
using
number_float_function_t
=
decltype
(
std
::
declval
<
T
&>
().
number_float
(
std
::
declval
<
Float
>
(),
std
::
declval
<
const
String
&>
()));
std
::
declval
<
Float
>
(),
std
::
declval
<
const
String
&>
()));
template
<
typename
T
,
typename
String
>
template
<
typename
T
,
typename
String
>
using
string_function_t
=
using
string_function_t
=
decltype
(
std
::
declval
<
T
&>
().
string
(
std
::
declval
<
String
&>
()));
decltype
(
std
::
declval
<
T
&>
().
string
(
std
::
declval
<
String
&>
()));
template
<
typename
T
>
template
<
typename
T
>
using
start_object_function_t
=
using
start_object_function_t
=
decltype
(
std
::
declval
<
T
&>
().
start_object
(
std
::
declval
<
std
::
size_t
>
()));
decltype
(
std
::
declval
<
T
&>
().
start_object
(
std
::
declval
<
std
::
size_t
>
()));
template
<
typename
T
,
typename
String
>
template
<
typename
T
,
typename
String
>
using
key_function_t
=
using
key_function_t
=
decltype
(
std
::
declval
<
T
&>
().
key
(
std
::
declval
<
String
&>
()));
decltype
(
std
::
declval
<
T
&>
().
key
(
std
::
declval
<
String
&>
()));
template
<
typename
T
>
template
<
typename
T
>
using
end_object_function_t
=
decltype
(
std
::
declval
<
T
&>
().
end_object
());
using
end_object_function_t
=
decltype
(
std
::
declval
<
T
&>
().
end_object
());
template
<
typename
T
>
template
<
typename
T
>
using
start_array_function_t
=
using
start_array_function_t
=
decltype
(
std
::
declval
<
T
&>
().
start_array
(
std
::
declval
<
std
::
size_t
>
()));
decltype
(
std
::
declval
<
T
&>
().
start_array
(
std
::
declval
<
std
::
size_t
>
()));
template
<
typename
T
>
template
<
typename
T
>
using
end_array_function_t
=
decltype
(
std
::
declval
<
T
&>
().
end_array
());
using
end_array_function_t
=
decltype
(
std
::
declval
<
T
&>
().
end_array
());
template
<
typename
T
,
typename
Exception
>
template
<
typename
T
,
typename
Exception
>
using
parse_error_function_t
=
decltype
(
std
::
declval
<
T
&>
().
parse_error
(
using
parse_error_function_t
=
decltype
(
std
::
declval
<
T
&>
().
parse_error
(
std
::
declval
<
std
::
size_t
>
(),
std
::
declval
<
const
std
::
string
&>
(),
std
::
declval
<
std
::
size_t
>
(),
std
::
declval
<
const
std
::
string
&>
(),
std
::
declval
<
const
Exception
&>
()));
std
::
declval
<
const
Exception
&>
()));
template
<
typename
SAX
,
typename
BasicJsonType
>
template
<
typename
SAX
,
typename
BasicJsonType
>
struct
is_sax
struct
is_sax
{
{
private:
private:
static_assert
(
is_basic_json
<
BasicJsonType
>::
value
,
static_assert
(
is_basic_json
<
BasicJsonType
>::
value
,
"BasicJsonType must be of type basic_json<...>"
);
"BasicJsonType must be of type basic_json<...>"
);
...
@@ -70,7 +70,7 @@ private:
...
@@ -70,7 +70,7 @@ private:
using
string_t
=
typename
BasicJsonType
::
string_t
;
using
string_t
=
typename
BasicJsonType
::
string_t
;
using
exception_t
=
typename
BasicJsonType
::
exception
;
using
exception_t
=
typename
BasicJsonType
::
exception
;
public:
public:
static
constexpr
bool
value
=
static
constexpr
bool
value
=
is_detected_exact
<
bool
,
null_function_t
,
SAX
>::
value
&&
is_detected_exact
<
bool
,
null_function_t
,
SAX
>::
value
&&
is_detected_exact
<
bool
,
boolean_function_t
,
SAX
>::
value
&&
is_detected_exact
<
bool
,
boolean_function_t
,
SAX
>::
value
&&
...
@@ -92,7 +92,7 @@ public:
...
@@ -92,7 +92,7 @@ public:
template
<
typename
SAX
,
typename
BasicJsonType
>
template
<
typename
SAX
,
typename
BasicJsonType
>
struct
is_sax_static_asserts
struct
is_sax_static_asserts
{
{
private:
private:
static_assert
(
is_basic_json
<
BasicJsonType
>::
value
,
static_assert
(
is_basic_json
<
BasicJsonType
>::
value
,
"BasicJsonType must be of type basic_json<...>"
);
"BasicJsonType must be of type basic_json<...>"
);
...
@@ -102,7 +102,7 @@ private:
...
@@ -102,7 +102,7 @@ private:
using
string_t
=
typename
BasicJsonType
::
string_t
;
using
string_t
=
typename
BasicJsonType
::
string_t
;
using
exception_t
=
typename
BasicJsonType
::
exception
;
using
exception_t
=
typename
BasicJsonType
::
exception
;
public:
public:
static_assert
(
is_detected_exact
<
bool
,
null_function_t
,
SAX
>::
value
,
static_assert
(
is_detected_exact
<
bool
,
null_function_t
,
SAX
>::
value
,
"Missing/invalid function: bool null()"
);
"Missing/invalid function: bool null()"
);
static_assert
(
is_detected_exact
<
bool
,
boolean_function_t
,
SAX
>::
value
,
static_assert
(
is_detected_exact
<
bool
,
boolean_function_t
,
SAX
>::
value
,
...
...
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