aboutsummaryrefslogtreecommitdiff
path: root/cpp/src/sfntly
diff options
context:
space:
mode:
authordfilimon <dfilimon@google.com>2011-09-17 22:58:38 +0000
committerdfilimon <dfilimon@google.com>2011-09-17 22:58:38 +0000
commitef99dd2c2b64947120bbdb7c1bd552c4b6900521 (patch)
tree0fe1226bbb00718979bb9fa796154a14f49b0530 /cpp/src/sfntly
parent8864c216cd32f069dccc16b66376003597a790fb (diff)
downloadsfntly-ef99dd2c2b64947120bbdb7c1bd552c4b6900521.tar.gz
Fixing compile errors on Windows.
Diffstat (limited to 'cpp/src/sfntly')
-rw-r--r--cpp/src/sfntly/table/core/cmap_table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/sfntly/table/core/cmap_table.cc b/cpp/src/sfntly/table/core/cmap_table.cc
index bfc7f86..6911660 100644
--- a/cpp/src/sfntly/table/core/cmap_table.cc
+++ b/cpp/src/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),