Cleanup: add nolint comment to move semantic test

This commit is contained in:
Jacques Lucke 2021-10-03 14:03:53 +02:00
parent f2da98d816
commit c206fa9627
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ TEST(AssetCatalogPathTest, move_semantics)
EXPECT_TRUE(source_path);
AssetCatalogPath dest_path = std::move(source_path);
EXPECT_FALSE(source_path);
EXPECT_FALSE(source_path); /* NOLINT: bugprone-use-after-move */
EXPECT_TRUE(dest_path);
}