Fix usage example.

llvm-svn: 30837
This commit is contained in:
Nick Lewycky 2006-10-09 18:33:08 +00:00
parent 9e29ec371a
commit afb040a603
1 changed files with 1 additions and 1 deletions

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: