Fix usage example.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30837 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2006-10-09 18:33:08 +00:00
parent 2dc0f2b55c
commit 0376ade972

View File

@ -53,7 +53,7 @@ class AllocationInst;
/// unsigned Count; /// unsigned Count;
/// CountMallocVisitor() : Count(0) {} /// CountMallocVisitor() : Count(0) {}
/// ///
/// void visitMallocInst(MallocInst *MI) { ++Count; } /// void visitMallocInst(MallocInst &MI) { ++Count; }
/// }; /// };
/// ///
/// And this class would be used like this: /// And this class would be used like this: