diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2014-03-05 17:58:48 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2014-03-05 17:58:48 +0000 |
| commit | 28eded3845ae70219a5a939d1f111172f9fc823c (patch) | |
| tree | 626699fbc21760cbcfec64d602744e5a4ee47a71 /libcxx/test | |
| parent | f2c10e1340a09d888afcd5c56aa394a20a3ed6d4 (diff) | |
| download | bcm5719-llvm-28eded3845ae70219a5a939d1f111172f9fc823c.tar.gz bcm5719-llvm-28eded3845ae70219a5a939d1f111172f9fc823c.zip | |
Mark is_final as a C++14 feature.
llvm-svn: 202991
Diffstat (limited to 'libcxx/test')
| -rw-r--r-- | libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_final.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_final.pass.cpp b/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_final.pass.cpp index 2f69c743e04..cf32196213e 100644 --- a/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_final.pass.cpp +++ b/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/is_final.pass.cpp @@ -13,7 +13,7 @@ #include <type_traits> -#if __cplusplus >= 201103L +#if _LIBCPP_STD_VER > 11 struct P final { }; union U1 { }; |

