Prohibit copy constructor in StackStream.

This commit is contained in:
Milo Yip 2014-07-04 20:19:15 +08:00
parent d9c02b5b79
commit 96882f4977

View File

@ -480,7 +480,7 @@ private:
SizeType length_;
private:
// Prohibit assignment for VC C4512 warning
StackStream(const StackStream&);
StackStream& operator=(const StackStream&);
};