Remove spaces in NOLINT comments (#5407)

clang-tidy ignores the category filter if there's a space. wpiformat now
ignores categories it doesn't understand, so we can remove the spaces.
This commit is contained in:
Tyler Veness
2023-06-20 20:29:23 -07:00
committed by GitHub
parent 3a0e484691
commit 5d3a133f9f
8 changed files with 15 additions and 15 deletions

View File

@@ -32,7 +32,7 @@ class CommandPtr final {
: m_ptr(std::move(command)) {}
template <std::derived_from<Command> T>
// NOLINTNEXTLINE (bugprone-forwarding-reference-overload)
// NOLINTNEXTLINE(bugprone-forwarding-reference-overload)
explicit CommandPtr(T&& command)
: CommandPtr(
std::make_unique<std::decay_t<T>>(std::forward<T>(command))) {}