From 68436a9b488b976f811dd2dc2c5dba078bd9427b Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Mon, 27 Jun 2016 01:02:43 +0000 Subject: Implement P0163r0. Add shared_ptr::weak_type. This patch adds the weak_type typedef in shared_ptr. It is available in C++17 and newer. This patch also updates the _LIBCPP_STD_VER and TEST_STD_VER macros to have the value of 16, since 2016 is the current year. llvm-svn: 273839 --- libcxx/test/support/test_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/test/support') diff --git a/libcxx/test/support/test_macros.h b/libcxx/test/support/test_macros.h index ada4a961ab0..a072e31b77b 100644 --- a/libcxx/test/support/test_macros.h +++ b/libcxx/test/support/test_macros.h @@ -43,7 +43,7 @@ #elif __cplusplus <= 201402L # define TEST_STD_VER 14 #else -# define TEST_STD_VER 99 // greater than current standard +# define TEST_STD_VER 16 // current year; greater than current standard #endif #endif -- cgit v1.2.3