summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-17 22:58:38 +0000
committerdfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-17 22:58:38 +0000
commit7bb24d45ed7d04c85f27ecdc3866153a8350ed44 (patch)
tree425279071bae29b29a38ff8a6e4a3cde13fce339
parenta8be98eb7c7b56644732b866346cf8b852592170 (diff)
downloadsrc-7bb24d45ed7d04c85f27ecdc3866153a8350ed44.tar.gz
Fixing compile errors on Windows.
git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@86 672e30a5-4c29-85ac-ac6d-611c735e0a51
-rw-r--r--sfntly/table/core/cmap_table.cc2
-rw-r--r--test/cmap_test.cc1
2 files changed, 2 insertions, 1 deletions
diff --git a/sfntly/table/core/cmap_table.cc b/sfntly/table/core/cmap_table.cc
index bfc7f86..6911660 100644
--- a/sfntly/table/core/cmap_table.cc
+++ b/sfntly/table/core/cmap_table.cc
@@ -593,7 +593,7 @@ CALLER_ATTACH FontDataTable*
******************************************************************************/
CMapTable::CMapFormat4::CMapFormat4(ReadableFontData* data,
const CMapId& cmap_id)
- : CMapTable::CMap::CMap(data, CMapFormat::kFormat4, cmap_id),
+ : CMap(data, CMapFormat::kFormat4, cmap_id),
seg_count_(SegCount(data)),
start_code_offset_(StartCodeOffset(seg_count_)),
end_code_offset_(Offset::kFormat4EndCount),
diff --git a/test/cmap_test.cc b/test/cmap_test.cc
index f870184..e67137c 100644
--- a/test/cmap_test.cc
+++ b/test/cmap_test.cc
@@ -14,6 +14,7 @@
* limitations under the License.
*/
+#include "sfntly/port/type.h"
#include <assert.h>
#include <unicode/ucnv.h>