Patch by Magliocchetti Riccardo:

Removed shadow on size variable.
This commit is contained in:
yabause 2008-11-10 21:59:54 +00:00
parent 54f56cb716
commit c5e2f063dd
1 changed files with 2 additions and 2 deletions

View File

@ -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)