Blackbone icon indicating copy to clipboard operation
Blackbone copied to clipboard

Compile Error error C2280: “blackbone::MemBlock::MemBlock(const blackbone::MemBlock &)”: Try to reference the deleted function

Open 860000023 opened this issue 4 years ago • 2 comments

When I use vs2017 to compile, I encountered such an error. Don't know how to solve it, hope someone can help me

860000023 avatar Feb 10 '21 07:02 860000023

I have the same problem……

MoeGrid avatar Feb 16 '21 03:02 MoeGrid

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); }

strivexjun avatar Mar 03 '21 03:03 strivexjun