mirror of
https://github.com/nlohmann/json.git
synced 2026-02-17 09:03:58 +00:00
🚨 suppress cppcoreguidelines-c-copy-assignment-signature,misc-unconventional-assign-operator (#4896)
Signed-off-by: Niels Lohmann <mail@nlohmann.me>
This commit is contained in:
@@ -21353,7 +21353,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
||||
|
||||
/// @brief copy assignment
|
||||
/// @sa https://json.nlohmann.me/api/basic_json/operator=/
|
||||
basic_json& operator=(basic_json other) noexcept (
|
||||
basic_json& operator=(basic_json other) noexcept ( // NOLINT(cppcoreguidelines-c-copy-assignment-signature,misc-unconventional-assign-operator)
|
||||
std::is_nothrow_move_constructible<value_t>::value&&
|
||||
std::is_nothrow_move_assignable<value_t>::value&&
|
||||
std::is_nothrow_move_constructible<json_value>::value&&
|
||||
|
||||
Reference in New Issue
Block a user