mirror of
https://github.com/nlohmann/json.git
synced 2026-04-14 03:58:55 +00:00
💄 cleanup after #508
This commit is contained in:
1411
src/json.hpp
1411
src/json.hpp
File diff suppressed because it is too large
Load Diff
@@ -802,8 +802,9 @@ template <typename BasicJsonType, typename T, std::size_t N,
|
||||
enable_if_t<not std::is_constructible<
|
||||
typename BasicJsonType::string_t, T (&)[N]>::value,
|
||||
int> = 0>
|
||||
void to_json(BasicJsonType &j, T (&arr)[N]) {
|
||||
external_constructor<value_t::array>::construct(j, arr);
|
||||
void to_json(BasicJsonType& j, T (&arr)[N])
|
||||
{
|
||||
external_constructor<value_t::array>::construct(j, arr);
|
||||
}
|
||||
|
||||
///////////////
|
||||
|
||||
Reference in New Issue
Block a user