[cfe-commits] r158967 - /cfe/trunk/include/clang/Lex/MultipleIncludeOpt.h

James Dennett jdennett at google.com
Thu Jun 21 22:32:40 PDT 2012


Author: jdennett
Date: Fri Jun 22 00:32:40 2012
New Revision: 158967

URL: http://llvm.org/viewvc/llvm-project?rev=158967&view=rev
Log:
Documentation cleanup: Fixed the format of the file header (that I broke in
a recent commit), and eliminated a Doxygen error by changing a comment inside
a function to not be a Doxygen comment.

Modified:
    cfe/trunk/include/clang/Lex/MultipleIncludeOpt.h

Modified: cfe/trunk/include/clang/Lex/MultipleIncludeOpt.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Lex/MultipleIncludeOpt.h?rev=158967&r1=158966&r2=158967&view=diff
==============================================================================
--- cfe/trunk/include/clang/Lex/MultipleIncludeOpt.h (original)
+++ cfe/trunk/include/clang/Lex/MultipleIncludeOpt.h Fri Jun 22 00:32:40 2012
@@ -6,9 +6,11 @@
 // License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
-
+///
 /// \file
 /// \brief Defines the MultipleIncludeOpt interface.
+//
+//===----------------------------------------------------------------------===//
 
 #ifndef LLVM_CLANG_MULTIPLEINCLUDEOPT_H
 #define LLVM_CLANG_MULTIPLEINCLUDEOPT_H
@@ -94,8 +96,8 @@
 
   /// \brief Invoked when a top level conditional (except \#ifndef) is found.
   void EnterTopLevelConditional() {
-    /// If a conditional directive (except #ifndef) is found at the top level,
-    /// there is a chunk of the file not guarded by the controlling macro.
+    // If a conditional directive (except #ifndef) is found at the top level,
+    // there is a chunk of the file not guarded by the controlling macro.
     Invalidate();
   }
 





More information about the cfe-commits mailing list