aboutsummaryrefslogtreecommitdiff
path: root/common/huffman.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/huffman.h')
-rw-r--r--common/huffman.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/huffman.h b/common/huffman.h
index 9a8b712c23..4175d0d309 100644
--- a/common/huffman.h
+++ b/common/huffman.h
@@ -66,9 +66,9 @@ private:
Symbol(uint32 c, uint32 s);
};
- typedef Common::List<Symbol> CodeList;
- typedef Common::Array<CodeList> CodeLists;
- typedef Common::Array<Symbol *> SymbolList;
+ typedef List<Symbol> CodeList;
+ typedef Array<CodeList> CodeLists;
+ typedef Array<Symbol*> SymbolList;
/** Lists of codes and their symbols, sorted by code length. */
CodeLists _codes;