aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/ITransformWeights.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/ITransformWeights.h')
-rw-r--r--arm_compute/runtime/ITransformWeights.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/runtime/ITransformWeights.h b/arm_compute/runtime/ITransformWeights.h
index f85b7966c5..08671bbe3c 100644
--- a/arm_compute/runtime/ITransformWeights.h
+++ b/arm_compute/runtime/ITransformWeights.h
@@ -72,7 +72,7 @@ public:
/** Allow instances of this class to be moved */
ITransformWeights &operator=(ITransformWeights &&other)
{
- if(this != &other)
+ if (this != &other)
{
_num_refcount = other._num_refcount.load();
_reshape_run = other._reshape_run;
@@ -119,9 +119,9 @@ public:
}
protected:
- std::atomic<int32_t> _num_refcount{ 0 };
- bool _reshape_run{ false };
+ std::atomic<int32_t> _num_refcount{0};
+ bool _reshape_run{false};
};
-} // arm_compute
+} // namespace arm_compute
#endif /*ARM_COMPUTE_ITRANSFORMWEIGHTS_H */