Reordered initialization order to kill a ton of warnings.

svn-id: r33452
This commit is contained in:
Nicola Mettifogo 2008-07-30 15:01:15 +00:00
parent 81cb493158
commit aa2ffe047b

View File

@ -356,9 +356,9 @@ protected:
public:
SubReadStream(ReadStream *parentStream, uint32 end, bool disposeParentStream = false)
: _parentStream(parentStream),
_disposeParentStream(disposeParentStream),
_pos(0),
_end(end),
_disposeParentStream(disposeParentStream) {
_end(end) {
assert(parentStream);
}
~SubReadStream() {