Silence a static analysis warning

This commit is contained in:
Sebastian Messmer 2016-09-25 20:36:35 +02:00
parent 54fb6fbd89
commit ce218f264a
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ public:
EXPECT_EQ(expectedSize, (uint64_t)st.st_size);
});
EXPECT_NUMBYTES_READABLE(expectedSize, dynamic_cast<fspp::File*>(node));
fspp::File* fileNode = dynamic_cast<fspp::File*>(node);
ASSERT(fileNode != nullptr, "Is not a file node");
EXPECT_NUMBYTES_READABLE(expectedSize, fileNode);
}
void EXPECT_NUMBYTES_READABLE(uint64_t expectedSize, fspp::File *file) {