summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-17 23:04:28 +0000
committerdfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-17 23:04:28 +0000
commitce2471a4cd4a9d39f3e761bfe6739fb454bf0dc3 (patch)
tree7756c7bdbbeb98a6d6fcabf42ef94b17f676c5ed
parent7bb24d45ed7d04c85f27ecdc3866153a8350ed44 (diff)
downloadsrc-ce2471a4cd4a9d39f3e761bfe6739fb454bf0dc3.tar.gz
Fixing Windows build, round 2.
git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@87 672e30a5-4c29-85ac-ac6d-611c735e0a51
-rw-r--r--sfntly/table/core/cmap_table.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sfntly/table/core/cmap_table.cc b/sfntly/table/core/cmap_table.cc
index 6911660..0b4f89a 100644
--- a/sfntly/table/core/cmap_table.cc
+++ b/sfntly/table/core/cmap_table.cc
@@ -686,6 +686,7 @@ int32_t CMapTable::CMapFormat4::StartCodeOffset(int32_t seg_count) {
int32_t CMapTable::CMapFormat4::EndCode(ReadableFontData* data,
int32_t seg_count,
int32_t index) {
+ UNREFERENCED_PARAMETER(seg_count);
int32_t end_code = data->ReadUShort(Offset::kFormat4EndCount +
index * DataSize::kUSHORT);
return end_code;
@@ -946,11 +947,13 @@ CMapTable::CMapFormat4::Builder::NewInstance(const CMapId& cmap_id) {
CMapTable::CMapFormat4::Builder::Builder(ReadableFontData* data, int32_t offset,
const CMapId& cmap_id)
: CMap::Builder(data, CMapFormat::kFormat4, cmap_id) {
+ UNREFERENCED_PARAMETER(offset);
}
CMapTable::CMapFormat4::Builder::Builder(WritableFontData* data, int32_t offset,
const CMapId& cmap_id)
: CMap::Builder(data, CMapFormat::kFormat4, cmap_id) {
+ UNREFERENCED_PARAMETER(offset);
}
CMapTable::CMapFormat4::Builder::Builder(SegmentList* segments,