aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfParser/test/Gather.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnTfParser/test/Gather.cpp')
-rw-r--r--src/armnnTfParser/test/Gather.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnnTfParser/test/Gather.cpp b/src/armnnTfParser/test/Gather.cpp
index a6c20fd63e..8c4b891141 100644
--- a/src/armnnTfParser/test/Gather.cpp
+++ b/src/armnnTfParser/test/Gather.cpp
@@ -15,7 +15,7 @@ BOOST_AUTO_TEST_SUITE(TensorflowParser)
namespace {
// helper for setting the dimensions in prototxt
void dimsHelper(const std::vector<int>& dims, std::string& text){
- for(u_int i = 0; i < dims.size(); ++i) {
+ for(unsigned int i = 0; i < dims.size(); ++i) {
text.append(R"(dim {
size: )");
text.append(std::to_string(dims[i]));