diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-04-27 14:16:57 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-04-27 14:16:57 -0400 |
commit | 3d15b89fb78a0dc22b1879e491b781044b6b5f9a (patch) | |
tree | beaddf9eac4fb66da71680ce6b1f3dd4d11a46bd /extools | |
parent | 3a619395b355ddb519538fb206e4880783a5a937 (diff) |
fix compile error with FastSparseVector enabled
Diffstat (limited to 'extools')
-rw-r--r-- | extools/featurize_grammar.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extools/featurize_grammar.cc b/extools/featurize_grammar.cc index 0c3418eb..ebae9fdc 100644 --- a/extools/featurize_grammar.cc +++ b/extools/featurize_grammar.cc @@ -660,7 +660,7 @@ struct Featurizer { cout << " ||| "; WriteAnonymous(it->first, &cout); cout << " ||| "; - feats.Write(false, &cout); + print(cout,feats,"="); cout << endl; } } |