Niels Lohmann
6413f31d8e
👷 add CI step for coverage
2021-01-31 12:41:16 +01:00
Niels Lohmann
4ba60702f4
🚨 fix warnings
2021-01-30 13:21:59 +01:00
Niels Lohmann
b66ebcc950
🚨 fix warnings
2021-01-30 12:50:36 +01:00
Niels Lohmann
7b3ba241ab
🚨 fix warnings
2021-01-29 23:00:44 +01:00
Niels Lohmann
0b7af878e4
🚨 fix warnings
2021-01-29 22:57:52 +01:00
Niels Lohmann
37b8071123
🚨 fix warnings
2021-01-29 20:15:41 +01:00
Niels Lohmann
52aa607c87
🚨 fix warnings
2021-01-29 15:15:41 +01:00
Niels Lohmann
1101f0e359
🚨 fix warnings
2021-01-29 14:42:45 +01:00
Niels Lohmann
8073441732
🚨 fix warnings
2021-01-28 22:18:34 +01:00
Niels Lohmann
3393ce0478
🚨 fix warnings
2021-01-28 21:53:18 +01:00
Niels Lohmann
c3edf49451
🚨 fix warnings
2021-01-28 21:25:46 +01:00
Niels Lohmann
de9ae4e759
🚨 fix warnings
2021-01-28 20:39:50 +01:00
Niels Lohmann
b5c5eaad5a
🚨 fix warnings
2021-01-28 20:00:59 +01:00
Niels Lohmann
e2868eed33
🚨 fix warnings
2021-01-28 19:42:53 +01:00
Niels Lohmann
bfd4c7c739
🚨 fix warnings
2021-01-28 17:10:52 +01:00
Niels Lohmann
0dcb01bc47
🚨 fix warnings
2021-01-28 16:38:11 +01:00
Niels Lohmann
bfcbb43b7e
🚨 fix warnings
2021-01-28 15:48:53 +01:00
Niels Lohmann
4ade7210ac
Merge branch 'develop' of https://github.com/nlohmann/json into ci
2021-01-28 14:48:51 +01:00
Niels Lohmann
0a27d1cf59
👷 add CI steps for cppcheck and cpplint
2021-01-27 21:18:42 +01:00
Niels Lohmann
ffdeb77468
🚨 fix warnings #2615
2021-01-27 12:54:46 +01:00
Niels Lohmann
9dd1d50bf3
🚨 fix comment
2021-01-23 20:38:08 +01:00
Niels Lohmann
96a1334072
🚨 fix includes
2021-01-23 17:07:09 +01:00
Niels Lohmann
1a7d208aff
Merge branch 'develop' of https://github.com/nlohmann/json into ci
2021-01-03 20:29:35 +01:00
Niels Lohmann
085d497bf7
📄 update copyright year
2021-01-03 20:28:06 +01:00
Niels Lohmann
8dc3ed11e7
🚨 fix warnings
2021-01-01 13:08:42 +01:00
Niels Lohmann
6bfcea39d0
🚨 fix warnings
2021-01-01 12:59:55 +01:00
Niels Lohmann
6085beec35
🚨 fix warnings
2021-01-01 12:51:48 +01:00
Niels Lohmann
45ec48b2a1
♻️ use iwyu properly
2020-12-30 14:20:00 +01:00
Niels Lohmann
bdb2469c31
🚨 fix warnings
2020-12-29 21:36:30 +01:00
Niels Lohmann
433da31334
⚗️ try to use GCC 10
2020-12-29 20:16:51 +01:00
Niels Lohmann
98b2152452
Merge branch 'develop' of https://github.com/nlohmann/json into std_bytes
2020-12-29 14:37:46 +01:00
Jaakko Moisio
467f622c65
Fix compilation of input_adapter(container) in edge cases
...
This fixes a compilation issue with the library if trying to use containers that
don't have non-member `begin()` and `end()` functions via ADL.
This patch extends the `using std::begin` and `using std::end` declarations to
also cover the return type deduction of the input_adapter() template
specialization for containers. The previous implementation only enabled the
detection of `std::begin()` and `std::end()` in the function body, making the
specialization unusable for container types that only have member `begin()` and
`end()` functions.
It is not typical to have `using` declarations in the namespace scope in a
header file. But a C++11 implementation can't rely on fully automatic return
type deduction, and needs to rely on ADL enabled helper templates. To prevent
the using declarations leaking, they are enclosed in another nested namespace.
2020-12-28 22:21:02 +01:00
Niels Lohmann
5dd06714b1
🐛 allow parsing from std::byte containers #2546
2020-12-28 11:31:21 +01:00
Niels Lohmann
dfedefb993
🚨 fix warnings
2020-12-26 17:56:16 +01:00
Niels Lohmann
f15d447522
🚨 fix warnings
2020-12-26 14:55:19 +01:00
Alexander Karzhenkov
cd7acc1dc5
Include <string_view> in "nlohmann/json.hpp" when C++17 is used
2020-12-20 19:40:36 +05:00
Niels Lohmann
af8c6e7aa9
Merge pull request #2533 from nlohmann/c++_future
...
Do not unconditionally redefine C++14 constructs
2020-12-16 20:54:09 +01:00
Niels Lohmann
5c1a5bc9c1
Merge pull request #2534 from nlohmann/clarify_license
...
Clarify license of is_complete_type implementation
2020-12-16 20:53:38 +01:00
Niels Lohmann
5cc5285fe8
🚨 fix shadowing warning
2020-12-15 22:15:36 +01:00
Niels Lohmann
94d177e09a
📄 clarify license
2020-12-14 14:58:59 +01:00
Niels Lohmann
467986fe98
♻️ do not unconditionally redefine C++14 constructs
2020-12-14 14:31:27 +01:00
Niels Lohmann
85ffc85a29
🎨 amalgamate code
2020-12-14 10:38:49 +01:00
Niels Lohmann
3ad6992f50
Merge pull request #2405 from karzhenkov/fix-json_ref-move
...
Fix move constructor of json_ref
2020-12-11 13:36:33 +01:00
Niels Lohmann
e3643aadf7
Merge pull request #2447 from jbzdarkid/develop
...
Add asserts to suppress C28020
2020-12-11 13:27:52 +01:00
Krylov Yaroslav
972c15f26e
ordered_map::insert(InputIt first, InputIt last) is added
2020-12-07 20:15:41 +03:00
Joseph Blackman
9f45d314d5
Apply suggestions from code review
...
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
2020-11-24 11:02:58 -08:00
jbzdarkid
64ff1cf90d
Add asserts to suppress C28020
2020-10-26 13:57:38 -07:00
Alexander Karzhenkov
42a9dc0bc3
Improve json_ref implementation
2020-09-27 10:45:21 +05:00
Niels Lohmann
14f8be11ce
Merge branch 'develop' of https://github.com/nlohmann/json into hedley14
2020-08-24 16:12:11 +02:00
Niels Lohmann
9d726c25d5
♻️ remove "#define private public"
2020-08-12 13:30:06 +02:00