summaryrefslogtreecommitdiffstats
path: root/test/std/utilities
diff options
context:
space:
mode:
authorMichael Park <mpark@apache.org>2017-01-16 08:14:25 +0000
committerMichael Park <mpark@apache.org>2017-01-16 08:14:25 +0000
commitb894a0b46d21d8c95703ae1221a3185434acf9e5 (patch)
treee24c3a2132f35891a3d42d1c349a779e6e3a4c83 /test/std/utilities
parentd25c997c77d689cac28f44bc7ef379ade7a04ffe (diff)
downloadexternal_libcxx-b894a0b46d21d8c95703ae1221a3185434acf9e5.tar.gz
external_libcxx-b894a0b46d21d8c95703ae1221a3185434acf9e5.tar.bz2
external_libcxx-b894a0b46d21d8c95703ae1221a3185434acf9e5.zip
Added a workaround for a `-fdelayed-template-parsing` bug.
Summary: There seems to be an additional bug in `-fdelayed-template-parsing` similar to http://llvm.org/viewvc/llvm-project?view=revision&revision=236063. This is a workaround for it for <variant> to compile with `clang-cl` on Windows. Reviewers: EricWF Differential Revision: https://reviews.llvm.org/D28734 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@292097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/std/utilities')
-rw-r--r--test/std/utilities/variant/variant.visit/visit.pass.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/std/utilities/variant/variant.visit/visit.pass.cpp b/test/std/utilities/variant/variant.visit/visit.pass.cpp
index 610223269..46d225883 100644
--- a/test/std/utilities/variant/variant.visit/visit.pass.cpp
+++ b/test/std/utilities/variant/variant.visit/visit.pass.cpp
@@ -10,9 +10,6 @@
// UNSUPPORTED: c++98, c++03, c++11, c++14
-// FIXME: This test hangs for an unknown reason on Windows. See llvm.org/PR31642
-// UNSUPPORTED: windows
-
// <variant>
// template <class Visitor, class... Variants>
// constexpr see below visit(Visitor&& vis, Variants&&... vars);