summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-12-24 04:45:23 +0000
committerChris Lattner <sabre@nondot.org>2010-12-24 04:45:23 +0000
commit9c47b4ac28f9129223670f53cbd83fb33d734555 (patch)
tree5f081eefd4e0c8e76bfc6375f49df623c923566d /clang
parentc416ba612b06ad3656d2431540542b22fce444f1 (diff)
downloadbcm5719-llvm-9c47b4ac28f9129223670f53cbd83fb33d734555.tar.gz
bcm5719-llvm-9c47b4ac28f9129223670f53cbd83fb33d734555.zip
don't use #pragma mark, it isn't portable.
llvm-svn: 122540
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/Sema/Sema.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h
index 6cccbd6d293..5ec169c6429 100644
--- a/clang/include/clang/Sema/Sema.h
+++ b/clang/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
OpenPOWER on IntegriCloud