Blackbone
Blackbone copied to clipboard
Compile Error error C2280: “blackbone::MemBlock::MemBlock(const blackbone::MemBlock &)”: Try to reference the deleted function
When I use vs2017 to compile, I encountered such an error. Don't know how to solve it, hope someone can help me
I have the same problem……
When I use vs2017 to compile, I encountered such an error. Don't know how to solve it, hope someone can help me
try to add a copy constructor in the file MemBlock.h .
line:109 BLACKBONE_API MemBlock(MemBlock& rhs) { _pImpl.swap(rhs._pImpl); }