Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrega <philipp.stefan.womser@sap.com>2021-08-10 12:00:40 +0300
committerKyrega <philipp.stefan.womser@sap.com>2021-08-10 18:39:04 +0300
commit22ee8b07c89fc791dd2a1e290539888bc1235fad (patch)
tree873b08e38bd1b6002e7844682b4e9de32ef0a9d4
parenta3d52c75b7d4099e86199659be7ccd2869781f70 (diff)
Correct WIStreamWrapper
-rw-r--r--test/unittest/readertest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unittest/readertest.cpp b/test/unittest/readertest.cpp
index c805eef0..057940fa 100644
--- a/test/unittest/readertest.cpp
+++ b/test/unittest/readertest.cpp
@@ -1416,8 +1416,8 @@ public:
size_t PutEnd(Ch*) { assert(false); return 0; }
private:
- WIStreamWrapper(const IStreamWrapper&);
- WIStreamWrapper& operator=(const IStreamWrapper&);
+ WIStreamWrapper(const WIStreamWrapper&);
+ WIStreamWrapper& operator=(const WIStreamWrapper&);
std::wistream& is_;
};