summaryrefslogtreecommitdiff
path: root/decoder
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2014-03-13 23:06:50 -0400
committerChris Dyer <redpony@gmail.com>2014-03-13 23:06:50 -0400
commit6c04595f968f7a9c047c5941113752a7c7280b45 (patch)
tree8f10b917d274028f8c4b7b32758b2b8516278c85 /decoder
parent9da824304e9fee7b38d15186e7bcaf2278ed5368 (diff)
possible gcc comp error
Diffstat (limited to 'decoder')
-rw-r--r--decoder/tree2string_translator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/tree2string_translator.cc b/decoder/tree2string_translator.cc
index 4ccc54e2..ac9c0d74 100644
--- a/decoder/tree2string_translator.cc
+++ b/decoder/tree2string_translator.cc
@@ -33,7 +33,7 @@ using namespace std;
// *0* implication: (S [A] _[B])
// b implication: (S [A] (B b *INCOMPLETE*))
struct Tree2StringGrammarNode {
- unordered_map<unsigned, Tree2StringGrammarNode> next;
+ map<unsigned, Tree2StringGrammarNode> next;
string rules;
};