aboutsummaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authordfilimon <dfilimon@google.com>2011-09-22 21:17:23 +0000
committerdfilimon <dfilimon@google.com>2011-09-22 21:17:23 +0000
commit83939c445fc3ec904740edd6f3c328c93d6fd780 (patch)
treec9c764045e6ab7a3ab7d288a8c800ca49c021958 /cpp
parentd456f88549a5ee0532b4cd38b1a03fd4a60c52c4 (diff)
downloadsfntly-83939c445fc3ec904740edd6f3c328c93d6fd780.tar.gz
Fixing signed/unsigned comparison mismatch.
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/test/autogenerated/cmap_basic_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/test/autogenerated/cmap_basic_test.cc b/cpp/src/test/autogenerated/cmap_basic_test.cc
index 07c54e1..22cbdd2 100644
--- a/cpp/src/test/autogenerated/cmap_basic_test.cc
+++ b/cpp/src/test/autogenerated/cmap_basic_test.cc
@@ -81,7 +81,7 @@ void CMapBasicTests::SetUp() {
TEST_P(CMapBasicTests, BasicTest) {
TiXmlNodeVector* cmap_table = GetNodesWithName(&document_, "cmap_table");
// A font can only have one CMap table
- ASSERT_EQ(cmap_table->size(), (int32_t)1);
+ ASSERT_EQ(cmap_table->size(), (size_t)1);
TiXmlNodeVector* cmaps = GetNodesWithName(cmap_table->at(0), "cmap");
const TiXmlAttribute* num_cmaps_attr = GetAttribute(cmap_table->at(0),
"num_cmaps");