summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-15 19:18:58 +0000
committerdfilimon@google.com <dfilimon@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-15 19:18:58 +0000
commit9b84c9cb838074805aa1d9931fe937304c92f0a3 (patch)
tree216369a20efcafecae4f8287a43e1c391f969e4b
parentbb035e4061737ef1ac7ee3e1263c443b55c123e9 (diff)
downloadsrc-9b84c9cb838074805aa1d9931fe937304c92f0a3.tar.gz
Added UNREFERENCED_PARAMATER fix for CMapFormat2 iterator.
git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@77 672e30a5-4c29-85ac-ac6d-611c735e0a51
-rw-r--r--sfntly/table/core/cmap_table.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sfntly/table/core/cmap_table.h b/sfntly/table/core/cmap_table.h
index 2242613..bfd69aa 100644
--- a/sfntly/table/core/cmap_table.h
+++ b/sfntly/table/core/cmap_table.h
@@ -312,7 +312,9 @@ public:
int32_t EntryCount(int32_t sub_header_index);
int32_t IdRangeOffset(int32_t sub_header_index);
int32_t IdDelta(int32_t sub_header_index);
- void Iterator(CMapTable::CMap::CharacterIterator* output) { }
+ void Iterator(CMapTable::CMap::CharacterIterator* output) {
+ UNREFERENCED_PARAMETER(output);
+ }
};
// CMapTable::Builder