summaryrefslogtreecommitdiff
path: root/tools/nnapi_quickcheck/lib/env.cpp
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-03-04 18:09:24 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-03-04 18:09:24 +0900
commit302e6564a7a76109e1178207e44e45a58631c477 (patch)
tree6cc4bd95e5e438331fc2c53234af4ed0e0f3bc20 /tools/nnapi_quickcheck/lib/env.cpp
parentbd11b24234d7d43dfe05a81c520aa01ffad06e42 (diff)
downloadnnfw-302e6564a7a76109e1178207e44e45a58631c477.tar.gz
nnfw-302e6564a7a76109e1178207e44e45a58631c477.tar.bz2
nnfw-302e6564a7a76109e1178207e44e45a58631c477.zip
Diffstat (limited to 'tools/nnapi_quickcheck/lib/env.cpp')
-rw-r--r--tools/nnapi_quickcheck/lib/env.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/nnapi_quickcheck/lib/env.cpp b/tools/nnapi_quickcheck/lib/env.cpp
index 758516752..005e876c2 100644
--- a/tools/nnapi_quickcheck/lib/env.cpp
+++ b/tools/nnapi_quickcheck/lib/env.cpp
@@ -16,14 +16,14 @@
#include "env.h"
-#include "util/environment.h"
+#include "misc/environment.h"
//
// Integer variable
//
IntVar::IntVar(const std::string &name, int32_t value) : _value{value}
{
- nnfw::util::env::IntAccessor{name}.access(_value);
+ nnfw::misc::env::IntAccessor{name}.access(_value);
}
//
@@ -31,7 +31,7 @@ IntVar::IntVar(const std::string &name, int32_t value) : _value{value}
//
FloatVar::FloatVar(const std::string &name, float value) : _value{value}
{
- nnfw::util::env::FloatAccessor{name}.access(_value);
+ nnfw::misc::env::FloatAccessor{name}.access(_value);
}
//