aboutsummaryrefslogtreecommitdiff
path: root/src/core/helpers/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/helpers/Utils.cpp')
-rw-r--r--src/core/helpers/Utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/helpers/Utils.cpp b/src/core/helpers/Utils.cpp
index 3900475355..6ca29d180d 100644
--- a/src/core/helpers/Utils.cpp
+++ b/src/core/helpers/Utils.cpp
@@ -31,9 +31,9 @@ bool has_holes(const ITensorInfo &info, size_t dimension)
const auto &strides = info.strides_in_bytes();
size_t squashed_bytes = info.element_size();
- for(size_t dim = 0; dim <= dimension; ++dim)
+ for (size_t dim = 0; dim <= dimension; ++dim)
{
- if(strides[dim] != squashed_bytes)
+ if (strides[dim] != squashed_bytes)
{
return true;
}