From: <man...@us...> - 2014-03-07 14:16:09
|
Revision: 3843 http://sourceforge.net/p/modplug/code/3843 Author: manxorist Date: 2014-03-07 14:16:01 +0000 (Fri, 07 Mar 2014) Log Message: ----------- [Ref] Remove 3 superflous includes of misc_util.h . Modified Paths: -------------- trunk/OpenMPT/common/serialization_utils.h trunk/OpenMPT/common/version.cpp trunk/OpenMPT/soundlib/tuning.cpp trunk/OpenMPT/soundlib/tuningbase.h Modified: trunk/OpenMPT/common/serialization_utils.h =================================================================== --- trunk/OpenMPT/common/serialization_utils.h 2014-03-07 13:08:48 UTC (rev 3842) +++ trunk/OpenMPT/common/serialization_utils.h 2014-03-07 14:16:01 UTC (rev 3843) @@ -10,18 +10,22 @@ #pragma once +#include <algorithm> +#include <bitset> +#include <istream> +#include <limits> +#include <sstream> #include <string> -#include <sstream> +#include <ostream> #include <vector> -#include <bitset> -#include "../common/misc_util.h" + +#include <string.h> + #include "../common/typedefs.h" -#include <limits> + #ifdef HAS_TYPE_TRAITS #include <type_traits> #endif -#include <algorithm> -#include <string.h> namespace srlztn //SeRiaLiZaTioN { Modified: trunk/OpenMPT/common/version.cpp =================================================================== --- trunk/OpenMPT/common/version.cpp 2014-03-07 13:08:48 UTC (rev 3842) +++ trunk/OpenMPT/common/version.cpp 2014-03-07 14:16:01 UTC (rev 3843) @@ -16,8 +16,6 @@ #include <cstdlib> -#include "misc_util.h" - #include "versionNumber.h" #include "svn_version.h" Modified: trunk/OpenMPT/soundlib/tuning.cpp =================================================================== --- trunk/OpenMPT/soundlib/tuning.cpp 2014-03-07 13:08:48 UTC (rev 3842) +++ trunk/OpenMPT/soundlib/tuning.cpp 2014-03-07 14:16:01 UTC (rev 3843) @@ -15,6 +15,7 @@ #ifdef MODPLUG_TRACKER #include "../mptrack/Reporting.h" #endif +#include "../common/misc_util.h" #include <string> typedef CTuningRTI::RATIOTYPE RATIOTYPE; Modified: trunk/OpenMPT/soundlib/tuningbase.h =================================================================== --- trunk/OpenMPT/soundlib/tuningbase.h 2014-03-07 13:08:48 UTC (rev 3842) +++ trunk/OpenMPT/soundlib/tuningbase.h 2014-03-07 14:16:01 UTC (rev 3843) @@ -18,7 +18,6 @@ #include <ostream> #include <map> #include <limits> -#include "../common/misc_util.h" #include "../common/typedefs.h" namespace srlztn {class Ssb;} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |