aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/MultiHOG.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/MultiHOG.h')
-rw-r--r--arm_compute/runtime/MultiHOG.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/runtime/MultiHOG.h b/arm_compute/runtime/MultiHOG.h
index 32bad70738..45b3947eda 100644
--- a/arm_compute/runtime/MultiHOG.h
+++ b/arm_compute/runtime/MultiHOG.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2017 ARM Limited.
+ * Copyright (c) 2016-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -50,8 +50,8 @@ public:
const IHOG *model(size_t index) const override;
private:
- size_t _num_models;
- std::unique_ptr<HOG[]> _model;
+ size_t _num_models;
+ std::vector<HOG> _model;
};
}