any icon indicating copy to clipboard operation
any copied to clipboard

C++17 Interface

Open thelink2012 opened this issue 7 years ago • 2 comments

According to cppreference documentation (can't find the latest draft), the C++17 interface for std::any is a bit different from the one we are basing on, std::experimental::any. Function names changed and a few were added.

What should we do? Migrate to the new interface? Keep this?

Suggestions are very welcome.

Additional Info:

thelink2012 avatar Sep 05 '16 20:09 thelink2012

This is the latest draft I could find, and it contains the new interface (section 20.8):

http://open-std.org/JTC1/SC22/WG21/docs/papers/2016/n4606.pdf

I would suggest to follow the draft, maybe creating another repo/branch and deprecating this.

smancill avatar Oct 25 '16 04:10 smancill

Simply branching off the legacy version would be the best approach? Your any implementation is still very useful as compilation for embedded platforms is still many times constrained to C++11.

trueqbit avatar Jun 16 '19 11:06 trueqbit