Skip to content

Commit b6e2fd1

Browse files
author
Niccolò Iardella
committed
Fix with amalgamate
1 parent 77e3af4 commit b6e2fd1

File tree

19 files changed

+264
-307
lines changed

19 files changed

+264
-307
lines changed

docs/examples/json_base_class_t.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ int main()
7979

8080
// visit and output
8181
j.visit(
82-
[&](const json::json_pointer & p,
83-
const json & j)
82+
[&](const json::json_pointer & p,
83+
const json & j)
8484
{
8585
std::cout << (p.empty() ? std::string{"/"} : p.to_string())
8686
<< " - metadata = " << j.metadata << " -> " << j.dump() << '\n';

include/nlohmann/detail/abi_macros.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353

5454
#define NLOHMANN_JSON_ABI_TAGS \
5555
NLOHMANN_JSON_ABI_TAGS_CONCAT( \
56-
NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS, \
57-
NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON)
56+
NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS, \
57+
NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON)
5858

5959
// Construct the namespace version component
6060
#define NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT_EX(major, minor, patch) \
@@ -79,17 +79,17 @@
7979
#ifndef NLOHMANN_JSON_NAMESPACE
8080
#define NLOHMANN_JSON_NAMESPACE \
8181
nlohmann::NLOHMANN_JSON_NAMESPACE_CONCAT( \
82-
NLOHMANN_JSON_ABI_TAGS, \
83-
NLOHMANN_JSON_NAMESPACE_VERSION)
82+
NLOHMANN_JSON_ABI_TAGS, \
83+
NLOHMANN_JSON_NAMESPACE_VERSION)
8484
#endif
8585

8686
#ifndef NLOHMANN_JSON_NAMESPACE_BEGIN
8787
#define NLOHMANN_JSON_NAMESPACE_BEGIN \
8888
namespace nlohmann \
8989
{ \
9090
inline namespace NLOHMANN_JSON_NAMESPACE_CONCAT( \
91-
NLOHMANN_JSON_ABI_TAGS, \
92-
NLOHMANN_JSON_NAMESPACE_VERSION) \
91+
NLOHMANN_JSON_ABI_TAGS, \
92+
NLOHMANN_JSON_NAMESPACE_VERSION) \
9393
{
9494
#endif
9595

include/nlohmann/detail/conversions/from_json.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ template < typename BasicJsonType, typename ConstructibleArrayType,
263263
auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr)
264264
-> decltype(from_json_array_impl(j, arr, priority_tag<3> {}),
265265
j.template get<typename ConstructibleArrayType::value_type>(),
266-
void())
266+
void())
267267
{
268268
if (JSON_HEDLEY_UNLIKELY(!j.is_array()))
269269
{
@@ -275,7 +275,7 @@ void())
275275

276276
template < typename BasicJsonType, typename T, std::size_t... Idx >
277277
std::array<T, sizeof...(Idx)> from_json_inplace_array_impl(BasicJsonType&& j,
278-
identity_tag<std::array<T, sizeof...(Idx)>> /*unused*/, index_sequence<Idx...> /*unused*/)
278+
identity_tag<std::array<T, sizeof...(Idx)>> /*unused*/, index_sequence<Idx...> /*unused*/)
279279
{
280280
return { { std::forward<BasicJsonType>(j).at(Idx).template get<T>()... } };
281281
}

include/nlohmann/detail/input/binary_reader.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ class binary_reader
525525
{
526526
std::uint64_t number{};
527527
return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast<number_integer_t>(-1)
528-
- static_cast<number_integer_t>(number));
528+
- static_cast<number_integer_t>(number));
529529
}
530530

531531
// Binary data (0x00..0x17 bytes follow)

include/nlohmann/detail/iterators/iteration_proxy.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ namespace std
220220
#endif
221221
template<typename IteratorType>
222222
class tuple_size<::nlohmann::detail::iteration_proxy_value<IteratorType>> // NOLINT(cert-dcl58-cpp)
223-
: public std::integral_constant<std::size_t, 2> {};
223+
: public std::integral_constant<std::size_t, 2> {};
224224

225225
template<std::size_t N, typename IteratorType>
226226
class tuple_element<N, ::nlohmann::detail::iteration_proxy_value<IteratorType >> // NOLINT(cert-dcl58-cpp)

include/nlohmann/detail/iterators/iterator_traits.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct iterator_traits
4343

4444
template<typename T>
4545
struct iterator_traits < T, enable_if_t < !std::is_pointer<T>::value >>
46-
: iterator_types<T>
46+
: iterator_types<T>
4747
{
4848
};
4949

include/nlohmann/detail/macro_scope.hpp

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -261,70 +261,70 @@
261261
#define NLOHMANN_JSON_EXPAND( x ) x
262262
#define NLOHMANN_JSON_GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, NAME,...) NAME
263263
#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \
264-
NLOHMANN_JSON_PASTE64, \
265-
NLOHMANN_JSON_PASTE63, \
266-
NLOHMANN_JSON_PASTE62, \
267-
NLOHMANN_JSON_PASTE61, \
268-
NLOHMANN_JSON_PASTE60, \
269-
NLOHMANN_JSON_PASTE59, \
270-
NLOHMANN_JSON_PASTE58, \
271-
NLOHMANN_JSON_PASTE57, \
272-
NLOHMANN_JSON_PASTE56, \
273-
NLOHMANN_JSON_PASTE55, \
274-
NLOHMANN_JSON_PASTE54, \
275-
NLOHMANN_JSON_PASTE53, \
276-
NLOHMANN_JSON_PASTE52, \
277-
NLOHMANN_JSON_PASTE51, \
278-
NLOHMANN_JSON_PASTE50, \
279-
NLOHMANN_JSON_PASTE49, \
280-
NLOHMANN_JSON_PASTE48, \
281-
NLOHMANN_JSON_PASTE47, \
282-
NLOHMANN_JSON_PASTE46, \
283-
NLOHMANN_JSON_PASTE45, \
284-
NLOHMANN_JSON_PASTE44, \
285-
NLOHMANN_JSON_PASTE43, \
286-
NLOHMANN_JSON_PASTE42, \
287-
NLOHMANN_JSON_PASTE41, \
288-
NLOHMANN_JSON_PASTE40, \
289-
NLOHMANN_JSON_PASTE39, \
290-
NLOHMANN_JSON_PASTE38, \
291-
NLOHMANN_JSON_PASTE37, \
292-
NLOHMANN_JSON_PASTE36, \
293-
NLOHMANN_JSON_PASTE35, \
294-
NLOHMANN_JSON_PASTE34, \
295-
NLOHMANN_JSON_PASTE33, \
296-
NLOHMANN_JSON_PASTE32, \
297-
NLOHMANN_JSON_PASTE31, \
298-
NLOHMANN_JSON_PASTE30, \
299-
NLOHMANN_JSON_PASTE29, \
300-
NLOHMANN_JSON_PASTE28, \
301-
NLOHMANN_JSON_PASTE27, \
302-
NLOHMANN_JSON_PASTE26, \
303-
NLOHMANN_JSON_PASTE25, \
304-
NLOHMANN_JSON_PASTE24, \
305-
NLOHMANN_JSON_PASTE23, \
306-
NLOHMANN_JSON_PASTE22, \
307-
NLOHMANN_JSON_PASTE21, \
308-
NLOHMANN_JSON_PASTE20, \
309-
NLOHMANN_JSON_PASTE19, \
310-
NLOHMANN_JSON_PASTE18, \
311-
NLOHMANN_JSON_PASTE17, \
312-
NLOHMANN_JSON_PASTE16, \
313-
NLOHMANN_JSON_PASTE15, \
314-
NLOHMANN_JSON_PASTE14, \
315-
NLOHMANN_JSON_PASTE13, \
316-
NLOHMANN_JSON_PASTE12, \
317-
NLOHMANN_JSON_PASTE11, \
318-
NLOHMANN_JSON_PASTE10, \
319-
NLOHMANN_JSON_PASTE9, \
320-
NLOHMANN_JSON_PASTE8, \
321-
NLOHMANN_JSON_PASTE7, \
322-
NLOHMANN_JSON_PASTE6, \
323-
NLOHMANN_JSON_PASTE5, \
324-
NLOHMANN_JSON_PASTE4, \
325-
NLOHMANN_JSON_PASTE3, \
326-
NLOHMANN_JSON_PASTE2, \
327-
NLOHMANN_JSON_PASTE1)(__VA_ARGS__))
264+
NLOHMANN_JSON_PASTE64, \
265+
NLOHMANN_JSON_PASTE63, \
266+
NLOHMANN_JSON_PASTE62, \
267+
NLOHMANN_JSON_PASTE61, \
268+
NLOHMANN_JSON_PASTE60, \
269+
NLOHMANN_JSON_PASTE59, \
270+
NLOHMANN_JSON_PASTE58, \
271+
NLOHMANN_JSON_PASTE57, \
272+
NLOHMANN_JSON_PASTE56, \
273+
NLOHMANN_JSON_PASTE55, \
274+
NLOHMANN_JSON_PASTE54, \
275+
NLOHMANN_JSON_PASTE53, \
276+
NLOHMANN_JSON_PASTE52, \
277+
NLOHMANN_JSON_PASTE51, \
278+
NLOHMANN_JSON_PASTE50, \
279+
NLOHMANN_JSON_PASTE49, \
280+
NLOHMANN_JSON_PASTE48, \
281+
NLOHMANN_JSON_PASTE47, \
282+
NLOHMANN_JSON_PASTE46, \
283+
NLOHMANN_JSON_PASTE45, \
284+
NLOHMANN_JSON_PASTE44, \
285+
NLOHMANN_JSON_PASTE43, \
286+
NLOHMANN_JSON_PASTE42, \
287+
NLOHMANN_JSON_PASTE41, \
288+
NLOHMANN_JSON_PASTE40, \
289+
NLOHMANN_JSON_PASTE39, \
290+
NLOHMANN_JSON_PASTE38, \
291+
NLOHMANN_JSON_PASTE37, \
292+
NLOHMANN_JSON_PASTE36, \
293+
NLOHMANN_JSON_PASTE35, \
294+
NLOHMANN_JSON_PASTE34, \
295+
NLOHMANN_JSON_PASTE33, \
296+
NLOHMANN_JSON_PASTE32, \
297+
NLOHMANN_JSON_PASTE31, \
298+
NLOHMANN_JSON_PASTE30, \
299+
NLOHMANN_JSON_PASTE29, \
300+
NLOHMANN_JSON_PASTE28, \
301+
NLOHMANN_JSON_PASTE27, \
302+
NLOHMANN_JSON_PASTE26, \
303+
NLOHMANN_JSON_PASTE25, \
304+
NLOHMANN_JSON_PASTE24, \
305+
NLOHMANN_JSON_PASTE23, \
306+
NLOHMANN_JSON_PASTE22, \
307+
NLOHMANN_JSON_PASTE21, \
308+
NLOHMANN_JSON_PASTE20, \
309+
NLOHMANN_JSON_PASTE19, \
310+
NLOHMANN_JSON_PASTE18, \
311+
NLOHMANN_JSON_PASTE17, \
312+
NLOHMANN_JSON_PASTE16, \
313+
NLOHMANN_JSON_PASTE15, \
314+
NLOHMANN_JSON_PASTE14, \
315+
NLOHMANN_JSON_PASTE13, \
316+
NLOHMANN_JSON_PASTE12, \
317+
NLOHMANN_JSON_PASTE11, \
318+
NLOHMANN_JSON_PASTE10, \
319+
NLOHMANN_JSON_PASTE9, \
320+
NLOHMANN_JSON_PASTE8, \
321+
NLOHMANN_JSON_PASTE7, \
322+
NLOHMANN_JSON_PASTE6, \
323+
NLOHMANN_JSON_PASTE5, \
324+
NLOHMANN_JSON_PASTE4, \
325+
NLOHMANN_JSON_PASTE3, \
326+
NLOHMANN_JSON_PASTE2, \
327+
NLOHMANN_JSON_PASTE1)(__VA_ARGS__))
328328
#define NLOHMANN_JSON_PASTE2(func, v1) func(v1)
329329
#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2)
330330
#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3)

include/nlohmann/detail/meta/type_traits.hpp

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -203,19 +203,19 @@ struct is_default_constructible : std::is_default_constructible<T> {};
203203

204204
template <typename T1, typename T2>
205205
struct is_default_constructible<std::pair<T1, T2>>
206-
: conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {};
206+
: conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {};
207207

208208
template <typename T1, typename T2>
209209
struct is_default_constructible<const std::pair<T1, T2>>
210-
: conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {};
210+
: conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {};
211211

212212
template <typename... Ts>
213213
struct is_default_constructible<std::tuple<Ts...>>
214-
: conjunction<is_default_constructible<Ts>...> {};
214+
: conjunction<is_default_constructible<Ts>...> {};
215215

216216
template <typename... Ts>
217217
struct is_default_constructible<const std::tuple<Ts...>>
218-
: conjunction<is_default_constructible<Ts>...> {};
218+
: conjunction<is_default_constructible<Ts>...> {};
219219

220220
template <typename T, typename... Args>
221221
struct is_constructible : std::is_constructible<T, Args...> {};
@@ -396,7 +396,7 @@ struct is_constructible_array_type_impl <
396396
BasicJsonType, ConstructibleArrayType,
397397
enable_if_t<std::is_same<ConstructibleArrayType,
398398
typename BasicJsonType::value_type>::value >>
399-
: std::true_type {};
399+
: std::true_type {};
400400

401401
template<typename BasicJsonType, typename ConstructibleArrayType>
402402
struct is_constructible_array_type_impl <
@@ -413,8 +413,8 @@ is_detected<range_value_t, ConstructibleArrayType>::value&&
413413
// special case for types like std::filesystem::path whose iterator's value_type are themselves
414414
// c.f. https://github.com/nlohmann/json/pull/3073
415415
!std::is_same<ConstructibleArrayType, detected_t<range_value_t, ConstructibleArrayType>>::value&&
416-
is_complete_type <
417-
detected_t<range_value_t, ConstructibleArrayType >>::value >>
416+
is_complete_type <
417+
detected_t<range_value_t, ConstructibleArrayType >>::value >>
418418
{
419419
using value_type = range_value_t<ConstructibleArrayType>;
420420

@@ -537,12 +537,12 @@ using is_usable_as_key_type = typename std::conditional <
537537
template<typename BasicJsonType, typename KeyTypeCVRef, bool RequireTransparentComparator = true,
538538
bool ExcludeObjectKeyType = RequireTransparentComparator, typename KeyType = uncvref_t<KeyTypeCVRef>>
539539
using is_usable_as_basic_json_key_type = typename std::conditional <
540-
is_usable_as_key_type<typename BasicJsonType::object_comparator_t,
541-
typename BasicJsonType::object_t::key_type, KeyTypeCVRef,
542-
RequireTransparentComparator, ExcludeObjectKeyType>::value
543-
&& !is_json_iterator_of<BasicJsonType, KeyType>::value,
544-
std::true_type,
545-
std::false_type >::type;
540+
is_usable_as_key_type<typename BasicJsonType::object_comparator_t,
541+
typename BasicJsonType::object_t::key_type, KeyTypeCVRef,
542+
RequireTransparentComparator, ExcludeObjectKeyType>::value
543+
&& !is_json_iterator_of<BasicJsonType, KeyType>::value,
544+
std::true_type,
545+
std::false_type >::type;
546546

547547
template<typename ObjectType, typename KeyType>
548548
using detect_erase_with_key_type = decltype(std::declval<ObjectType&>().erase(std::declval<KeyType>()));

include/nlohmann/detail/output/binary_writer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ class binary_writer
11621162
@return The calculated size for the BSON document entry for @a j with the given @a name.
11631163
*/
11641164
static std::size_t calc_bson_element_size(const string_t& name,
1165-
const BasicJsonType& j)
1165+
const BasicJsonType& j)
11661166
{
11671167
const auto header_size = calc_bson_entry_header_size(name, j);
11681168
switch (j.type())

include/nlohmann/json.hpp

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
137137
)
138138
{
139139
return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
140-
std::move(cb), allow_exceptions, ignore_comments);
140+
std::move(cb), allow_exceptions, ignore_comments);
141141
}
142142

143143
private:
@@ -833,8 +833,8 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
833833
detail::enable_if_t <
834834
!detail::is_basic_json<U>::value && detail::is_compatible_type<basic_json_t, U>::value, int > = 0 >
835835
basic_json(CompatibleType && val) noexcept(noexcept( // NOLINT(bugprone-forwarding-reference-overload,bugprone-exception-escape)
836-
JSONSerializer<U>::to_json(std::declval<basic_json_t&>(),
837-
std::forward<CompatibleType>(val))))
836+
JSONSerializer<U>::to_json(std::declval<basic_json_t&>(),
837+
std::forward<CompatibleType>(val))))
838838
{
839839
JSONSerializer<U>::to_json(*this, std::forward<CompatibleType>(val));
840840
set_parents();
@@ -940,8 +940,8 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
940940
{
941941
auto element = element_ref.moved_or_copied();
942942
m_data.m_value.object->emplace(
943-
std::move(*((*element.m_data.m_value.array)[0].m_data.m_value.string)),
944-
std::move((*element.m_data.m_value.array)[1]));
943+
std::move(*((*element.m_data.m_value.array)[0].m_data.m_value.string)),
944+
std::move((*element.m_data.m_value.array)[1]));
945945
}
946946
}
947947
else
@@ -1604,7 +1604,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
16041604
detail::has_from_json<basic_json_t, ValueType>::value,
16051605
int > = 0 >
16061606
ValueType get_impl(detail::priority_tag<0> /*unused*/) const noexcept(noexcept(
1607-
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), std::declval<ValueType&>())))
1607+
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), std::declval<ValueType&>())))
16081608
{
16091609
auto ret = ValueType();
16101610
JSONSerializer<ValueType>::from_json(*this, ret);
@@ -1646,7 +1646,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
16461646
detail::has_non_default_from_json<basic_json_t, ValueType>::value,
16471647
int > = 0 >
16481648
ValueType get_impl(detail::priority_tag<1> /*unused*/) const noexcept(noexcept(
1649-
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>())))
1649+
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>())))
16501650
{
16511651
return JSONSerializer<ValueType>::from_json(*this);
16521652
}
@@ -1796,7 +1796,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
17961796
detail::has_from_json<basic_json_t, ValueType>::value,
17971797
int > = 0 >
17981798
ValueType & get_to(ValueType& v) const noexcept(noexcept(
1799-
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), v)))
1799+
JSONSerializer<ValueType>::from_json(std::declval<const basic_json_t&>(), v)))
18001800
{
18011801
JSONSerializer<ValueType>::from_json(*this, v);
18021802
return v;
@@ -1886,13 +1886,13 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
18861886
detail::negation<detail::is_basic_json<ValueType>>,
18871887
detail::negation<std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>>,
18881888
#if defined(JSON_HAS_CPP_17) && (defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1910 && _MSC_VER <= 1914))
1889-
detail::negation<std::is_same<ValueType, std::string_view>>,
1889+
detail::negation<std::is_same<ValueType, std::string_view>>,
18901890
#endif
18911891
#if defined(JSON_HAS_CPP_17) && JSON_HAS_STATIC_RTTI
1892-
detail::negation<std::is_same<ValueType, std::any>>,
1892+
detail::negation<std::is_same<ValueType, std::any>>,
18931893
#endif
1894-
detail::is_detected_lazy<detail::get_template_function, const basic_json_t&, ValueType>
1895-
>::value, int >::type = 0 >
1894+
detail::is_detected_lazy<detail::get_template_function, const basic_json_t&, ValueType>
1895+
>::value, int >::type = 0 >
18961896
JSON_EXPLICIT operator ValueType() const
18971897
{
18981898
// delegate the call to get<>() const
@@ -4281,8 +4281,8 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
42814281
/// @brief create a UBJSON serialization of a given JSON value
42824282
/// @sa https://json.nlohmann.me/api/basic_json/to_ubjson/
42834283
static std::vector<std::uint8_t> to_ubjson(const basic_json& j,
4284-
const bool use_size = false,
4285-
const bool use_type = false)
4284+
const bool use_size = false,
4285+
const bool use_type = false)
42864286
{
42874287
std::vector<std::uint8_t> result;
42884288
to_ubjson(j, result, use_size, use_type);
@@ -4308,8 +4308,8 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
43084308
/// @brief create a BJData serialization of a given JSON value
43094309
/// @sa https://json.nlohmann.me/api/basic_json/to_bjdata/
43104310
static std::vector<std::uint8_t> to_bjdata(const basic_json& j,
4311-
const bool use_size = false,
4312-
const bool use_type = false)
4311+
const bool use_size = false,
4312+
const bool use_type = false)
43134313
{
43144314
std::vector<std::uint8_t> result;
43154315
to_bjdata(j, result, use_size, use_type);

0 commit comments

Comments
 (0)