Mercurial > hg > vamp-plugin-sdk
diff src/vamp-hostsdk/PluginHostAdapter.cpp @ 308:34754c776530
* Further fix to version handling
author | cannam |
---|---|
date | Thu, 26 Aug 2010 09:30:53 +0000 |
parents | 4454843ff384 |
children | ef1dc9963638 |
line wrap: on
line diff
--- a/src/vamp-hostsdk/PluginHostAdapter.cpp Wed Aug 25 16:09:15 2010 +0000 +++ b/src/vamp-hostsdk/PluginHostAdapter.cpp Thu Aug 26 09:30:53 2010 +0000 @@ -37,8 +37,8 @@ #include <vamp-hostsdk/PluginHostAdapter.h> #include <cstdlib> -#if ( VAMP_SDK_MAJOR_VERSION != 2 || VAMP_SDK_MINOR_VERSION != 0 ) -#error Incorrect Vamp SDK header included (not the expected 2.0 SDK) +#if ( VAMP_SDK_MAJOR_VERSION != 2 || VAMP_SDK_MINOR_VERSION != 2 ) +#error Unexpected version of Vamp SDK header included #endif _VAMP_SDK_HOSTSPACE_BEGIN(PluginHostAdapter.cpp)