From: Dan Gohman Date: Mon, 16 Aug 2010 14:45:36 +0000 (+0000) Subject: Fix indentation in example code in a comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=83fb63d5b3669aec8925af23907ca2b404a51f74;p=oota-llvm.git 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 --- diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h index 9e080c4e68f..72f921395c0 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; ///