diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-16 14:45:36 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-16 14:45:36 +0000 |
commit | 83fb63d5b3669aec8925af23907ca2b404a51f74 (patch) | |
tree | fa796bec375f79d67ddce509fd7bf69e089010ea | |
parent | ebd9923bd8b7d3d8d8a9f75d347e3f101252bc51 (diff) |
Fix indentation in example code in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111125 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ADT/FoldingSet.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h index 9e080c4e68..72f921395c 100644 --- a/include/llvm/ADT/FoldingSet.h +++ b/include/llvm/ADT/FoldingSet.h @@ -54,9 +54,9 @@ namespace llvm { /// void Profile(FoldingSetNodeID &ID) const { /// ID.AddString(Name); /// ID.AddInteger(Value); -/// } -/// ... -/// }; +/// } +/// ... +/// }; /// /// To define the folding set itself use the FoldingSet template; /// |