Fixed clang-tidy warnings

This commit is contained in:
Bartek Kryza
2023-06-23 20:46:43 +02:00
parent 525b3f74a6
commit 6c6384e5fd
8 changed files with 10 additions and 10 deletions

View File

@@ -138,7 +138,7 @@ bool class_::template_specialization_found() const
std::optional<std::string> class_::doxygen_link() const
{
auto type = is_struct() ? "struct" : "class";
const auto *type = is_struct() ? "struct" : "class";
auto name = name_and_ns();
util::replace_all(name, "_", "__");