aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-12-24 04:07:39 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-12-24 04:07:39 +0000
commit1a3942a18b1ca2f9c00ebdd016bea0ef15a0f9a0 (patch)
tree45b38f05b7b4948ca473524c098543e974b81edc
parentee933e1cc2718bd829c4649d060fc9f686005990 (diff)
ifndef _MSC_VER out #pragma mark on MSVC. It still tries to parse the text even
though it doesn't know what it is, and complains about invalid tokens ;/. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122538 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Sema/Sema.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h
index 2b01e16c50..6cccbd6d29 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -3134,7 +3134,9 @@ public:
const TemplateArgument *Args,
unsigned NumArgs);
+#ifndef _MSC_VER
#pragma mark C++ Variadic Templates (C++0x [temp.variadic])
+#endif
/// \brief The context in which an unexpanded parameter pack is
/// being diagnosed.
@@ -3344,7 +3346,9 @@ public:
/// false otherwise.
bool containsUnexpandedParameterPacks(Declarator &D);
+#ifndef _MSC_VER
#pragma mark C++ Template Argument Deduction (C++ [temp.deduct])
+#endif
/// \brief Describes the result of template argument deduction.
///