Skip to content
Snippets Groups Projects
Commit 34251ee4 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

clang-tidy: fix `readability-container-size-empty` lints

parent b1446ce1
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ template <typename T>
vtkSmartPointer<vtkCompositeArray<T>> ConcatenateDataArrays(
const std::vector<vtkDataArray*>& arrays)
{
if (arrays.size() == 0)
if (arrays.empty())
{
return nullptr;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment