Add a 'const' in a comment.

llvm-svn: 74389
This commit is contained in:
Dan Gohman 2009-06-27 20:53:16 +00:00
parent 5e774b1333
commit 3a4be9df4a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ namespace llvm {
/// public:
/// MyNode(const char *N, unsigned V) : Name(N), Value(V) {}
/// ...
/// void Profile(FoldingSetNodeID &ID) {
/// void Profile(FoldingSetNodeID &ID) const {
/// ID.AddString(Name);
/// ID.AddInteger(Value);
/// }