From: James Dennett Date: Fri, 22 Jun 2012 05:32:40 +0000 (+0000) Subject: Documentation cleanup: Fixed the format of the file header (that I broke in X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f0cf083692ddc05a8c4bcf1e2e91b57272f4e97;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158967 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Lex/MultipleIncludeOpt.h b/include/clang/Lex/MultipleIncludeOpt.h index e946e3ca95..a2a5a77c73 100644 --- a/include/clang/Lex/MultipleIncludeOpt.h +++ b/include/clang/Lex/MultipleIncludeOpt.h @@ -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(); }