diff options
author | Bastien Bouclet | 2019-01-05 11:55:21 +0100 |
---|---|---|
committer | Bastien Bouclet | 2019-01-05 12:02:19 +0100 |
commit | 26d0935b9ff1803863a9bc58b4479867a489cf66 (patch) | |
tree | 44ba0654558e6e2c05aa5f78e54968040ebbf0fe /common/savefile.h | |
parent | ece101ee4a5c9623eb030f5c96ef2bfa2401bdb3 (diff) | |
download | scummvm-rg350-26d0935b9ff1803863a9bc58b4479867a489cf66.tar.gz scummvm-rg350-26d0935b9ff1803863a9bc58b4479867a489cf66.tar.bz2 scummvm-rg350-26d0935b9ff1803863a9bc58b4479867a489cf66.zip |
COMMON: Remove usage of ScopedPtr in OutSaveFile
It's not very useful. However this is mostly to test the theory that the
build failure we've been experiencing in
engines/scumm/he/logic/football.cpp with the osx builder on buildbot is
related to the size of the intermediary assembly source file.
Diffstat (limited to 'common/savefile.h')
-rw-r--r-- | common/savefile.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/savefile.h b/common/savefile.h index eb7e6f946e..80cd03e068 100644 --- a/common/savefile.h +++ b/common/savefile.h @@ -28,7 +28,6 @@ #include "common/stream.h" #include "common/str-array.h" #include "common/error.h" -#include "common/ptr.h" namespace Common { @@ -47,7 +46,7 @@ typedef SeekableReadStream InSaveFile; */ class OutSaveFile: public WriteStream { protected: - ScopedPtr<WriteStream> _wrapped; + WriteStream *_wrapped; public: OutSaveFile(WriteStream *w); |