Registry / utility / boost-move

boost-move

JSON →
library1.90.0vcpkgunverified

A library providing move semantics and emulation for pre-C++11 compilers.

vcpkg install boost-move
INSTALL
IMPORT
SIG · BOOST-MOVE
B
boost-move
utilitycppv1.90.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

boost/move/move.hpp
#include <boost/move/move.hpp>

Demonstrates move semantics using Boost.Move.

#include <boost/move/move.hpp> #include <iostream> class MyClass { BOOST_COPYABLE_AND_MOVABLE(MyClass) public: MyClass() {} MyClass(BOOST_RV_REF(MyClass)) { std::cout << "Moved\n"; } MyClass& operator=(BOOST_RV_REF(MyClass)) { std::cout << "Move assigned\n"; return *this; } }; int main() { MyClass a; MyClass b(boost::move(a)); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources

No resource links recorded.

boost-move — pip install boost-move · libregistry