Lex: Cleanup whitespace in PragmaRegionHandler

llvm-svn: 185280
This commit is contained in:
David Majnemer 2013-06-30 08:18:16 +00:00
parent 9ad9959e51
commit 7aa8c2fd99
1 changed files with 21 additions and 21 deletions

View File

@ -1204,18 +1204,18 @@ struct PragmaARCCFCodeAuditedHandler : public PragmaHandler {
}
};
/// \brief Handle "\#pragma region [...]"
///
/// The syntax is
/// \code
/// #pragma region [optional name]
/// #pragma endregion [optional comment]
/// \endcode
///
/// \note This is
/// <a href="http://msdn.microsoft.com/en-us/library/b6xkz944(v=vs.80).aspx">editor-only</a>
/// pragma, just skipped by compiler.
struct PragmaRegionHandler : public PragmaHandler {
/// \brief Handle "\#pragma region [...]"
///
/// The syntax is
/// \code
/// #pragma region [optional name]
/// #pragma endregion [optional comment]
/// \endcode
///
/// \note This is
/// <a href="http://msdn.microsoft.com/en-us/library/b6xkz944(v=vs.80).aspx">editor-only</a>
/// pragma, just skipped by compiler.
struct PragmaRegionHandler : public PragmaHandler {
PragmaRegionHandler(const char *pragma) : PragmaHandler(pragma) { }
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
@ -1225,7 +1225,7 @@ struct PragmaARCCFCodeAuditedHandler : public PragmaHandler {
// _Pragma is not valid for MSVC, but there isn't any point
// to handle a _Pragma differently.
}
};
};
} // end anonymous namespace