summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-22 21:23:42 +0000
committerdfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-22 21:23:42 +0000
commitf247d4b0f53526631581f74a6862a2f2ca952f75 (patch)
treefd58a364ed16ec6b718095ef3bc3a1b808a92147
parent8dd54cd13ca1dfe7ef6245056d4a322b43a7fae5 (diff)
downloadsrc-f247d4b0f53526631581f74a6862a2f2ca952f75.tar.gz
Fixing another signed/unsigned comparison issue.
git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@97 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 22cbdd2..aae35e1 100644
--- a/test/autogenerated/cmap_basic_test.cc
+++ b/test/autogenerated/cmap_basic_test.cc
@@ -87,7 +87,7 @@ TEST_P(CMapBasicTests, BasicTest) {
"num_cmaps");
ASSERT_NE(num_cmaps_attr, reinterpret_cast<TiXmlAttribute*>(NULL));
// But there may be more than one CMap in this table
- ASSERT_LE(cmaps->size(), num_cmaps_attr->IntValue());
+ ASSERT_LE(cmaps->size(), (size_t)num_cmaps_attr->IntValue());
for (TiXmlNodeVector::iterator it = cmaps->begin();
it != cmaps->end(); ++it) {
int32_t platform_id = GetAttribute(*it, "platform_id")->IntValue();