Correct WIStreamWrapper

This commit is contained in:
Kyrega 2021-08-10 11:00:40 +02:00
parent a3d52c75b7
commit 22ee8b07c8

View File

@ -1416,8 +1416,8 @@ public:
size_t PutEnd(Ch*) { assert(false); return 0; } size_t PutEnd(Ch*) { assert(false); return 0; }
private: private:
WIStreamWrapper(const IStreamWrapper&); WIStreamWrapper(const WIStreamWrapper&);
WIStreamWrapper& operator=(const IStreamWrapper&); WIStreamWrapper& operator=(const WIStreamWrapper&);
std::wistream& is_; std::wistream& is_;
}; };