summaryrefslogtreecommitdiff
path: root/src/grammar.cc
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2009-12-03 17:15:37 -0500
committerChris Dyer <redpony@gmail.com>2009-12-03 17:15:37 -0500
commitd217901e91943e9295973499ccee07ec4341ede5 (patch)
tree116561c0b58d7c791d97f6df88ca0fa85fb252d7 /src/grammar.cc
parent178fe1cd5d2463458370e6fadc076b7229818774 (diff)
small fixes, learning to use git...
Diffstat (limited to 'src/grammar.cc')
-rw-r--r--src/grammar.cc2
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_;