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
commitcc87bfed0697583b7c11243913254dde3c0047d4 (patch)
tree5ffe356e854194949ef304d78aeed54b8a58b96a /decoder
parent4d653c9f1769855c3b8a835922b5ab56a92bd94b (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;
};