diff options
author | Chris Dyer <redpony@gmail.com> | 2009-12-03 17:15:37 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2009-12-03 17:15:37 -0500 |
commit | d217901e91943e9295973499ccee07ec4341ede5 (patch) | |
tree | 116561c0b58d7c791d97f6df88ca0fa85fb252d7 /src/grammar.cc | |
parent | 178fe1cd5d2463458370e6fadc076b7229818774 (diff) |
small fixes, learning to use git...
Diffstat (limited to 'src/grammar.cc')
-rw-r--r-- | src/grammar.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grammar.cc b/src/grammar.cc index 69e38320..e0b2a09e 100644 --- a/src/grammar.cc +++ b/src/grammar.cc @@ -36,7 +36,7 @@ struct TextRuleBin : public RuleBin { } void Dump() const { for (int i = 0; i < rules_.size(); ++i) - VLOG(1) << rules_[i]->AsString() << endl; + cerr << rules_[i]->AsString() << endl; } private: vector<TRulePtr> rules_; |