Commit 96882f49 authored by Milo Yip's avatar Milo Yip

Prohibit copy constructor in StackStream.

parent d9c02b5b
......@@ -480,7 +480,7 @@ private:
SizeType length_;
private:
// Prohibit assignment for VC C4512 warning
StackStream(const StackStream&);
StackStream& operator=(const StackStream&);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment