forked from OSchip/llvm-project
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 ;/. llvm-svn: 122538
This commit is contained in:
parent
ab434079d3
commit
38e92f6734
|
@ -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.
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue