diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2014-12-23 01:30:39 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2014-12-23 01:30:39 +0000 |
commit | 09ac1efe1494decd41dec996684d43e7316e3d65 (patch) | |
tree | efa2a5930793306e8aa1b568b9a33105f3661bc4 /libcxx | |
parent | 4f477fbe5732ca6d5381dcf1cddb3994913f9e48 (diff) | |
download | bcm5719-llvm-09ac1efe1494decd41dec996684d43e7316e3d65.tar.gz bcm5719-llvm-09ac1efe1494decd41dec996684d43e7316e3d65.zip |
Remove non-const test to get test passing. Will come back later and (correctly) add non-const tests
llvm-svn: 224748
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/test/std/experimental/optional/optional.object/optional.object.observe/op_arrow.pass.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/op_arrow.pass.cpp b/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/op_arrow.pass.cpp index e54a224d95b..b17fcf8d305 100644 --- a/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/op_arrow.pass.cpp +++ b/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/op_arrow.pass.cpp @@ -25,11 +25,7 @@ using std::experimental::optional; struct X { -#if _LIBCPP_STD_VER > 14 constexpr int test() const {return 3;} -#else - constexpr int test() {return 3;} -#endif }; #endif // _LIBCPP_STD_VER > 11 |