Patch by Magliocchetti Riccardo:
Removed shadow on size variable.
This commit is contained in:
parent
54f56cb716
commit
c5e2f063dd
|
@ -264,9 +264,9 @@ public:
|
|||
: std::basic_iostream<char, std::char_traits<char> >(&streambuf)
|
||||
{}
|
||||
|
||||
memorystream(int size)
|
||||
memorystream(int sz)
|
||||
: std::basic_iostream<char, std::char_traits<char> >(&streambuf)
|
||||
, streambuf(size)
|
||||
, streambuf(sz)
|
||||
{}
|
||||
|
||||
memorystream(char* usebuf, int buflength)
|
||||
|
|
Loading…
Reference in New Issue