summaryrefslogtreecommitdiff
path: root/decoder
diff options
context:
space:
mode:
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;
};