From: Dmitri Gribenko Date: Fri, 1 Feb 2013 17:25:11 +0000 (+0000) Subject: Fix comments: these are not trailing comments X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7d563c160082f3b0fb0dd7f1bd86994e957ade1;p=platform%2Fupstream%2Fllvm.git Fix comments: these are not trailing comments llvm-svn: 174197 --- diff --git a/clang/include/clang/Sema/CodeCompleteOptions.h b/clang/include/clang/Sema/CodeCompleteOptions.h index 30712db..e43496f 100644 --- a/clang/include/clang/Sema/CodeCompleteOptions.h +++ b/clang/include/clang/Sema/CodeCompleteOptions.h @@ -13,16 +13,16 @@ /// Options controlling the behavior of code completion. class CodeCompleteOptions { public: - ///< Show macros in code completion results. + /// Show macros in code completion results. unsigned IncludeMacros : 1; - ///< Show code patterns in code completion results. + /// Show code patterns in code completion results. unsigned IncludeCodePatterns : 1; - ///< Show top-level decls in code completion results. + /// Show top-level decls in code completion results. unsigned IncludeGlobals : 1; - ///< Show brief documentation comments in code completion results. + /// Show brief documentation comments in code completion results. unsigned IncludeBriefComments : 1; CodeCompleteOptions() :