aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfParser
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnTfParser')
-rw-r--r--src/armnnTfParser/test/Gather.cpp2
-rw-r--r--src/armnnTfParser/test/StridedSlice.cpp2
2 files changed, 2 insertions, 2 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]));
diff --git a/src/armnnTfParser/test/StridedSlice.cpp b/src/armnnTfParser/test/StridedSlice.cpp
index 89faf75679..340f3a49ff 100644
--- a/src/armnnTfParser/test/StridedSlice.cpp
+++ b/src/armnnTfParser/test/StridedSlice.cpp
@@ -15,7 +15,7 @@ BOOST_AUTO_TEST_SUITE(TensorflowParser)
namespace {
// helper for setting the dimensions in prototxt
void shapeHelper(const armnn::TensorShape& shape, std::string& text){
- for(u_int i = 0; i < shape.GetNumDimensions(); ++i) {
+ for(unsigned int i = 0; i < shape.GetNumDimensions(); ++i) {
text.append(R"(dim {
size: )");
text.append(std::to_string(shape[i]));