From: <man...@us...> - 2013-09-29 21:53:30
|
Revision: 2811 http://sourceforge.net/p/modplug/code/2811 Author: manxorist Date: 2013-09-29 21:53:24 +0000 (Sun, 29 Sep 2013) Log Message: ----------- [Ref] Rename DEPRECATED to MPT_DEPRECATED. Modified Paths: -------------- trunk/OpenMPT/common/typedefs.h trunk/OpenMPT/soundlib/FileReader.h Modified: trunk/OpenMPT/common/typedefs.h =================================================================== --- trunk/OpenMPT/common/typedefs.h 2013-09-29 21:48:26 UTC (rev 2810) +++ trunk/OpenMPT/common/typedefs.h 2013-09-29 21:53:24 UTC (rev 2811) @@ -91,13 +91,13 @@ // Some functions might be deprecated although they are still in use. -// Tag them with "DEPRECATED". +// Tag them with "MPT_DEPRECATED". #if MPT_COMPILER_MSVC -#define DEPRECATED __declspec(deprecated) +#define MPT_DEPRECATED __declspec(deprecated) #elif MPT_COMPILER_GCC || MPT_COMPILER_CLANG -#define DEPRECATED __attribute__((deprecated)) +#define MPT_DEPRECATED __attribute__((deprecated)) #else -#define DEPRECATED +#define MPT_DEPRECATED #endif Modified: trunk/OpenMPT/soundlib/FileReader.h =================================================================== --- trunk/OpenMPT/soundlib/FileReader.h 2013-09-29 21:48:26 UTC (rev 2810) +++ trunk/OpenMPT/soundlib/FileReader.h 2013-09-29 21:53:24 UTC (rev 2811) @@ -26,7 +26,7 @@ // change to show warnings for functions which trigger pre-caching the whole file for unseekable streams -//#define FILEREADER_DEPRECATED DEPRECATED +//#define FILEREADER_DEPRECATED MPT_DEPRECATED #define FILEREADER_DEPRECATED This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |