Fixing another signed/unsigned comparison issue.



git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@97 672e30a5-4c29-85ac-ac6d-611c735e0a51
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 @@
                                                       "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();