From: <man...@us...> - 2014-03-23 15:02:29
|
Revision: 3938 http://sourceforge.net/p/modplug/code/3938 Author: manxorist Date: 2014-03-23 15:02:20 +0000 (Sun, 23 Mar 2014) Log Message: ----------- [Fix] Compile fix. Modified Paths: -------------- trunk/OpenMPT/common/serialization_utils.h trunk/OpenMPT/soundlib/Sndfile.cpp Modified: trunk/OpenMPT/common/serialization_utils.h =================================================================== --- trunk/OpenMPT/common/serialization_utils.h 2014-03-23 14:46:39 UTC (rev 3937) +++ trunk/OpenMPT/common/serialization_utils.h 2014-03-23 15:02:20 UTC (rev 3938) @@ -12,8 +12,9 @@ #include <algorithm> #include <bitset> -#include <iosfwd> +#include <istream> #include <limits> +#include <ostream> #include <string> #include <vector> @@ -28,7 +29,7 @@ namespace srlztn //SeRiaLiZaTioN { -typedef std::ostream::off_type Offtype; +typedef std::ios::off_type Offtype; typedef Offtype Postype; typedef uintptr_t DataSize; // Data size type. Modified: trunk/OpenMPT/soundlib/Sndfile.cpp =================================================================== --- trunk/OpenMPT/soundlib/Sndfile.cpp 2014-03-23 14:46:39 UTC (rev 3937) +++ trunk/OpenMPT/soundlib/Sndfile.cpp 2014-03-23 15:02:20 UTC (rev 3938) @@ -23,6 +23,7 @@ #include "tuningcollection.h" #include "../common/StringFixer.h" #include "FileReader.h" +#include <iostream> #include <sstream> #include <time.h> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |