mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
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:
@@ -23,7 +23,7 @@ TEST(ScopeExitTest, Release) {
|
||||
{
|
||||
wpi::scope_exit exit1{[&] { ++exitCount; }};
|
||||
wpi::scope_exit exit2 = std::move(exit1);
|
||||
// NOLINTNEXTLINE (clang-analyzer-cplusplus.Move)
|
||||
// NOLINTNEXTLINE(clang-analyzer-cplusplus.Move)
|
||||
wpi::scope_exit exit3 = std::move(exit1);
|
||||
EXPECT_EQ(0, exitCount);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user