From: <man...@us...> - 2015-05-13 20:45:13
|
Revision: 5090 http://sourceforge.net/p/modplug/code/5090 Author: manxorist Date: 2015-05-13 20:45:07 +0000 (Wed, 13 May 2015) Log Message: ----------- [Fix] Fix namespaced compilation. Modified Paths: -------------- trunk/OpenMPT/mptrack/UpdateHints.h trunk/OpenMPT/soundlib/plugins/OpCodes.h Modified: trunk/OpenMPT/mptrack/UpdateHints.h =================================================================== --- trunk/OpenMPT/mptrack/UpdateHints.h 2015-05-13 20:27:57 UTC (rev 5089) +++ trunk/OpenMPT/mptrack/UpdateHints.h 2015-05-13 20:45:07 UTC (rev 5090) @@ -13,6 +13,8 @@ #include "../common/FlagSet.h" #include "../soundlib/Snd_defs.h" +OPENMPT_NAMESPACE_BEGIN + // Mutually exclusive hint categories enum HintCategory { @@ -201,3 +203,5 @@ static const HintCategory classCategory = HINTCAT_COMMENTS; CommentHint() : UpdateHint(classCategory) { type = HINT_MODCOMMENTS; } }; + +OPENMPT_NAMESPACE_END Modified: trunk/OpenMPT/soundlib/plugins/OpCodes.h =================================================================== --- trunk/OpenMPT/soundlib/plugins/OpCodes.h 2015-05-13 20:27:57 UTC (rev 5089) +++ trunk/OpenMPT/soundlib/plugins/OpCodes.h 2015-05-13 20:45:07 UTC (rev 5090) @@ -10,6 +10,8 @@ #pragma once +OPENMPT_NAMESPACE_BEGIN + #ifndef NO_VST static const char *VstOpCodes[] = { @@ -94,4 +96,6 @@ "effGetNumMidiInputChannels", "effGetNumMidiOutputChannels" }; -#endif \ No newline at end of file +#endif + +OPENMPT_NAMESPACE_END This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |