mirror of
https://github.com/nlohmann/json.git
synced 2026-02-23 03:46:26 +00:00
Suppress Clang-Tidy warnings (#4276)
This commit is contained in:
@@ -55,7 +55,7 @@ struct alt_string_iter
|
||||
return *this;
|
||||
}
|
||||
|
||||
std::string impl{};
|
||||
std::string impl{}; // NOLINT(readability-redundant-member-init)
|
||||
};
|
||||
|
||||
struct alt_string_data
|
||||
@@ -91,7 +91,7 @@ struct alt_string_data
|
||||
return *this;
|
||||
}
|
||||
|
||||
std::string impl{};
|
||||
std::string impl{}; // NOLINT(readability-redundant-member-init)
|
||||
};
|
||||
|
||||
void check_escaped(const char* original, const char* escaped = "", bool ensure_ascii = false);
|
||||
|
||||
Reference in New Issue
Block a user