summaryrefslogtreecommitdiff
path: root/source/application/api/use_case/kws/include/KwsResult.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/application/api/use_case/kws/include/KwsResult.hpp')
-rw-r--r--source/application/api/use_case/kws/include/KwsResult.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/application/api/use_case/kws/include/KwsResult.hpp b/source/application/api/use_case/kws/include/KwsResult.hpp
index 38f32b4..e0bb868 100644
--- a/source/application/api/use_case/kws/include/KwsResult.hpp
+++ b/source/application/api/use_case/kws/include/KwsResult.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited. All rights reserved.
+ * Copyright (c) 2021-2022 Arm Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -47,7 +47,7 @@ namespace kws {
this->m_inferenceNumber = inferenceIdx;
this->m_resultVec = ResultVec();
- for (auto & i : resultVec) {
+ for (auto& i : resultVec) {
if (i.m_normalisedVal >= this->m_threshold) {
this->m_resultVec.emplace_back(i);
}