forked from OSchip/llvm-project
don't use #pragma mark, it isn't portable.
llvm-svn: 122540
This commit is contained in:
parent
c416ba612b
commit
9c47b4ac28
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue