diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-24 04:07:39 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-24 04:07:39 +0000 |
commit | 38e92f673441000e015ccbf4ccd7f3c7c131cd02 (patch) | |
tree | 9a7aa165e63d8796535e868a2a8776b2d70fb49e | |
parent | ab434079d3f8d76eda60e658fb95dc9167568981 (diff) | |
download | bcm5719-llvm-38e92f673441000e015ccbf4ccd7f3c7c131cd02.tar.gz bcm5719-llvm-38e92f673441000e015ccbf4ccd7f3c7c131cd02.zip |
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
-rw-r--r-- | clang/include/clang/Sema/Sema.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h index 2b01e16c509..6cccbd6d293 100644 --- a/clang/include/clang/Sema/Sema.h +++ b/clang/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. /// |