Correct decoder output table ordering

This commit is contained in:
Rod Sheeter
2015-03-03 09:30:12 -08:00
parent 538b401b77
commit 498c637024
4 changed files with 34 additions and 18 deletions
+4
View File
@@ -52,6 +52,10 @@ struct Table {
uint32_t dst_offset;
uint32_t dst_length;
const uint8_t* dst_data;
bool operator<(const Table& other) const {
return tag < other.tag;
}
};