summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/experimental/any
Commit message (Collapse)AuthorAgeFilesLines
* Remove <experimental/any>; use <any> instead. See ↵Marshall Clow2018-02-0120-1822/+0
| | | | | | https://libcxx.llvm.org/TS_deprecation.html llvm-svn: 323972
* Fix failing -verify tests due to change in Clangs static_assert message.Eric Fiselier2017-09-173-10/+10
| | | | | | | | Clang recently changed the way it outputs static assert diagnostics. This patch fixes libc++'s -verify tests so they tolerate both the old and new message format. llvm-svn: 313499
* any: Add availability for experimental::bad_any_castDuncan P. N. Exon Smith2017-06-188-48/+8
| | | | | | | | As a follow up to r302172, add missing availability for bad_any_cast. rdar://problem/32161524 llvm-svn: 305647
* Add markup for libc++ dylib availabilityMehdi Amini2017-05-0411-5/+64
| | | | | | | | | | | | | | | Libc++ is used as a system library on macOS and iOS (amongst others). In order for users to be able to compile a binary that is intended to be deployed to an older version of the platform, clang provides the availability attribute <https://clang.llvm.org/docs/AttributeReference.html#availability>_ that can be placed on declarations to describe the lifecycle of a symbol in the library. See docs/DesignDocs/AvailabilityMarkup.rst for more information. Differential Revision: https://reviews.llvm.org/D31739 llvm-svn: 302172
* Fix unused parameters and variablesEric Fiselier2016-12-231-1/+2
| | | | llvm-svn: 290459
* [libcxx] Add std::anyEric Fiselier2016-08-1113-13/+13
| | | | | | | | | | | | | | | | | | | Summary: This patch adds std::any by moving/adapting <experimental/any>. This patch also implements the std::any parts of p0032r3 (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0032r3.pdf) and LWG 2509 (http://cplusplus.github.io/LWG/lwg-defects.html#2509). I plan to push it in a day or two if there are no comments. Reviewers: mclow.lists, EricWF Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D22733 llvm-svn: 278310
* [libcxx] Add <experimental/any> v2.Eric Fiselier2015-07-3120-0/+1802
Summary: This patch adds the second revision of <experimental/any>. I've been working from the LFTS draft found at this link. https://rawgit.com/cplusplus/fundamentals-ts/v1/fundamentals-ts.html#any Reviewers: danalbert, jroelofs, K-ballo, mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D6762 llvm-svn: 243728
OpenPOWER on IntegriCloud