diff options
author | Chris Lattner <sabre@nondot.org> | 2010-12-24 04:45:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-12-24 04:45:23 +0000 |
commit | 194252d41408b4e765bbaadfe77b5c4502489454 (patch) | |
tree | 453d5261b6aa14858dbfe5fa99431c040774a8ec | |
parent | 1a3942a18b1ca2f9c00ebdd016bea0ef15a0f9a0 (diff) |
don't use #pragma mark, it isn't portable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122540 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Sema/Sema.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 6cccbd6d29..5ec169c642 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -3134,9 +3134,9 @@ public: const TemplateArgument *Args, unsigned NumArgs); -#ifndef _MSC_VER -#pragma mark C++ Variadic Templates (C++0x [temp.variadic]) -#endif + //===--------------------------------------------------------------------===// + // C++ Variadic Templates (C++0x [temp.variadic]) + //===--------------------------------------------------------------------===// /// \brief The context in which an unexpanded parameter pack is /// being diagnosed. @@ -3346,10 +3346,10 @@ public: /// false otherwise. bool containsUnexpandedParameterPacks(Declarator &D); -#ifndef _MSC_VER -#pragma mark C++ Template Argument Deduction (C++ [temp.deduct]) -#endif - + //===--------------------------------------------------------------------===// + // C++ Template Argument Deduction (C++ [temp.deduct]) + //===--------------------------------------------------------------------===// + /// \brief Describes the result of template argument deduction. /// /// The TemplateDeductionResult enumeration describes the result of |