value-ptr-lite icon indicating copy to clipboard operation
value-ptr-lite copied to clipboard

value-ptr-lite - A C++ smart-pointer with value semantics for C++98, C++11 and later in a single-file header-only library

Results 5 value-ptr-lite issues
Sort by recently updated
recently updated
newest added

This updates [actions/checkout](https://github.com/actions/checkout) in the GitHub Actions workflows to v4, it's current version. Changelog: > ## v4.1.0 > - Add support for partial checkout filters > > ## v4.0.0 >...

Not sure about direct PR. Decided to make issue for discussion. Looks like current implementation doesn't allow to hold abstract types in value_ptr. `Cloner` and `Deleters` implies that it should...

The simple source: ``` #include #include #include #include struct TestStruct { int a; }; int main() { nonstd::value_ptr tmp(TestStruct{10}); // std::variant var; nonstd::variant var2; std::cout a

I would love if you submit a recipe for value-ptr-lite to your conan repository, I need this for @flexferrum's Jinja2Cpp recipe

Many functions in value_ptr.hpp had been constexpr but are no longer, this a pessimization that prevents code e.g. from creating static constexpr instances of nullptrs. Even more, with new C++...