diff options
-rw-r--r-- | tools/libclang/CXComment.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libclang/CXComment.cpp b/tools/libclang/CXComment.cpp index 05dc6fe4f8..f8e89f2877 100644 --- a/tools/libclang/CXComment.cpp +++ b/tools/libclang/CXComment.cpp @@ -316,10 +316,10 @@ CXString clang_VerbatimLineComment_getText(CXComment CXC) { namespace { +/// This comparison will sort parameters with valid index by index and +/// invalid (unresolved) parameters last. class ParamCommandCommentCompareIndex { public: - /// This comparison will sort parameters with valid index by index and - /// invalid (unresolved) parameters last. bool operator()(const ParamCommandComment *LHS, const ParamCommandComment *RHS) const { unsigned LHSIndex = UINT_MAX; |