summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-22 21:17:23 +0000
committerdfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-22 21:17:23 +0000
commit8dd54cd13ca1dfe7ef6245056d4a322b43a7fae5 (patch)
treeadb87f52a5c36d467921b7285b40c5bcd4022aaf
parent14783268d0367737c31150c0ea03bba7f9e4514e (diff)
downloadsrc-8dd54cd13ca1dfe7ef6245056d4a322b43a7fae5.tar.gz
Fixing signed/unsigned comparison mismatch.
git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@96 672e30a5-4c29-85ac-ac6d-611c735e0a51
-rw-r--r--test/autogenerated/cmap_basic_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/autogenerated/cmap_basic_test.cc b/test/autogenerated/cmap_basic_test.cc
index 07c54e1..22cbdd2 100644
--- a/test/autogenerated/cmap_basic_test.cc
+++ b/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");