[cfe-commits] r121632 - /cfe/trunk/lib/Sema/SemaOverload.cpp

Chandler Carruth chandlerc at gmail.com
Sun Dec 12 01:22:45 PST 2010


Author: chandlerc
Date: Sun Dec 12 03:22:45 2010
New Revision: 121632

URL: http://llvm.org/viewvc/llvm-project?rev=121632&view=rev
Log:
Add a comment to a helper function.

Modified:
    cfe/trunk/lib/Sema/SemaOverload.cpp

Modified: cfe/trunk/lib/Sema/SemaOverload.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaOverload.cpp?rev=121632&r1=121631&r2=121632&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaOverload.cpp (original)
+++ cfe/trunk/lib/Sema/SemaOverload.cpp Sun Dec 12 03:22:45 2010
@@ -4618,6 +4618,8 @@
   llvm::SmallVectorImpl<BuiltinCandidateTypeSet> &CandidateTypes;
   OverloadCandidateSet &CandidateSet;
 
+  /// \brief Helper method to factor out the common pattern of adding overloads
+  /// for '++' and '--' builtin operators.
   void addPlusPlusMinusMinusStyleOverloads(QualType CandidateTy,
                                            bool HasVolatile) {
     QualType ParamTypes[2] = {





More information about the cfe-commits mailing list