Skip to content

Commit

Permalink
CORE: make size check more explizit
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed Mar 23, 2024
1 parent e6b5d66 commit fe3f184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/core/collection/Array2DView.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Array2DView {
}

constexpr bool empty() const {
return !size();
return size() == 0u;
}
};

Expand Down

0 comments on commit fe3f184

Please sign in to comment.