-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Find alternatives to the current C++ smart pointers implementation based on loki #48
Comments
In Boost 1.41, there is an implementation of There is also an implementation of |
The header below attempts to alias a version of
And it (correctly) fails to provide
And then all the uses would look like:
A little unwieldy but this is all-around hacky anyways.
|
The current C++ smart pointer is based on loki libraries, see .
In modern C++ standards (C++11 and C++17 ) a new set of standard smart pointers have been accepted and introduced as part of the C++ standard libraries, which are listed . The modern C++ standards are support in newer versions of GCC than the one include in CentOS 6, for this reason we should look for an alternative until CentOS and/or RHEL supports the newer compilers.
The C++ smart pointers are mostly based on versions of smart pointers developed by , which should be compatible with the newest C++ standards, providing a simple upgrade path to C++ smart pointers when time comes.
The text was updated successfully, but these errors were encountered: