Browse Source

Fixed compatibility with VS2013

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
a042d60283
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      modules/juce_audio_plugin_client/utility/juce_PluginHostType.h
  2. +1
    -1
      modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/fplatform.h

+ 2
- 2
modules/juce_audio_plugin_client/utility/juce_PluginHostType.h View File

@@ -41,8 +41,8 @@ class PluginHostType
public:
//==============================================================================
PluginHostType() : type (getHostType()) {}
PluginHostType (const PluginHostType& other) noexcept = default;
PluginHostType& operator= (const PluginHostType& other) noexcept = default;
PluginHostType (const PluginHostType& other) = default;
PluginHostType& operator= (const PluginHostType& other) = default;
//==============================================================================
/** Represents the host type and also its version for some hosts. */


+ 1
- 1
modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/fplatform.h View File

@@ -70,7 +70,7 @@
#endif

#ifdef __cplusplus
#define SMTG_CPP11 __cplusplus >= 201103L || _MSC_VER > 1600 || SMTG_INTEL_CXX11_MODE
#define SMTG_CPP11 __cplusplus >= 201103L || _MSC_VER > 1800 || SMTG_INTEL_CXX11_MODE
#define SMTG_CPP11_STDLIBSUPPORT SMTG_CPP11
#define SMTG_HAS_NOEXCEPT _MSC_VER >= 1900 || (SMTG_INTEL_CXX11_MODE && SMTG_INTEL_COMPILER >= 1300)
#endif


Loading…
Cancel
Save