Suppress Clang-Tidy warnings (#4276)

This commit is contained in:
Niels Lohmann
2024-01-28 14:04:07 +01:00
committed by GitHub
parent 6a064e026a
commit c35d260c2f
12 changed files with 36 additions and 35 deletions

View File

@@ -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);