Fixed warnings in Visual Studio

This commit is contained in:
Benoit Blanchon
2014-11-11 18:18:26 +01:00
parent 160ff0961e
commit 3b77dbbed7
3 changed files with 11 additions and 3 deletions

View File

@ -17,6 +17,9 @@ class StreamPrintAdapter : public Print {
}
private:
// cannot be assigned
StreamPrintAdapter& operator=(const StreamPrintAdapter&);
std::ostream& _os;
};