Commit 35ccca8b authored by Milo Yip's avatar Milo Yip

Try to fix VC warning C4512

parent 8991037e
...@@ -322,6 +322,8 @@ private: ...@@ -322,6 +322,8 @@ private:
//! Disallow construction from non-const array //! Disallow construction from non-const array
template<SizeType N> template<SizeType N>
GenericStringRef(CharType (&str)[N]) /* = delete */; GenericStringRef(CharType (&str)[N]) /* = delete */;
GenericStringRef& operator=(const GenericStringRef&);
}; };
//! Mark a character pointer as constant string //! Mark a character pointer as constant string
......
...@@ -84,6 +84,10 @@ public: ...@@ -84,6 +84,10 @@ public:
Ch* PutBegin() { return 0; } Ch* PutBegin() { return 0; }
size_t PutEnd(Ch*) { return 0; } size_t PutEnd(Ch*) { return 0; }
private:
EncodedInputStream(const EncodedInputStream&);
EncodedInputStream& operator=(const EncodedInputStream&);
MemoryStream& is_; MemoryStream& is_;
}; };
......
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