]> granicus.if.org Git - clang/commitdiff
Documentation cleanup: Fixed the format of the file header (that I broke in
authorJames Dennett <jdennett@google.com>
Fri, 22 Jun 2012 05:32:40 +0000 (05:32 +0000)
committerJames Dennett <jdennett@google.com>
Fri, 22 Jun 2012 05:32:40 +0000 (05:32 +0000)
a recent commit), and eliminated a Doxygen error by changing a comment inside
a function to not be a Doxygen comment.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158967 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Lex/MultipleIncludeOpt.h

index e946e3ca9546d06f01cf57adc11df080b014c158..a2a5a77c73d741cf8c98b8edb3fa14cc2b063dfd 100644 (file)
@@ -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 @@ public:
 
   /// \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();
   }