aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/tensor/tensor_serialization
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-02 14:41:51 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-02 14:41:51 +0200
commitae440378fa719074c4bdfde612bd1169bbcc5586 (patch)
tree6343e7bf788fb2d29a31ffff486e33b959f6a110 /eval/src/tests/tensor/tensor_serialization
parent0f646f10b377b90fc37e9911f9fe383d112ff157 (diff)
Fix warnings hidden earlier due to including application headers as system includes
Diffstat (limited to 'eval/src/tests/tensor/tensor_serialization')
-rw-r--r--eval/src/tests/tensor/tensor_serialization/tensor_serialization_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/tests/tensor/tensor_serialization/tensor_serialization_test.cpp b/eval/src/tests/tensor/tensor_serialization/tensor_serialization_test.cpp
index b072b8ec3f8..b27221f6ba5 100644
--- a/eval/src/tests/tensor/tensor_serialization/tensor_serialization_test.cpp
+++ b/eval/src/tests/tensor/tensor_serialization/tensor_serialization_test.cpp
@@ -82,7 +82,7 @@ struct Fixture
BuilderType builder;
nbostream wrapStream(stream.peek(), stream.size());
auto formatId = wrapStream.getInt1_4Bytes();
- ASSERT_EQUAL(formatId, 1); // sparse format
+ ASSERT_EQUAL(formatId, 1u); // sparse format
SparseBinaryFormat::deserialize(wrapStream, builder);
EXPECT_TRUE(wrapStream.size() == 0);
auto ret = builder.build();