clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 3efdae4ab63084c542d2c17f130c892dcca244af
parent bc65f7453963e79a99e3c56fd573c6e2a1a09ae0
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Thu,  3 Mar 2022 21:03:06 +0100

up version to 0.19.0

Diffstat:
Minclude/clap/version.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/version.h b/include/clap/version.h @@ -21,7 +21,7 @@ typedef struct clap_version { #endif static CLAP_CONSTEXPR const uint32_t CLAP_VERSION_MAJOR = 0; -static CLAP_CONSTEXPR const uint32_t CLAP_VERSION_MINOR = 18; +static CLAP_CONSTEXPR const uint32_t CLAP_VERSION_MINOR = 19; static CLAP_CONSTEXPR const uint32_t CLAP_VERSION_REVISION = 0; static CLAP_CONSTEXPR const clap_version_t CLAP_VERSION = { @@ -29,7 +29,7 @@ static CLAP_CONSTEXPR const clap_version_t CLAP_VERSION = { // For version 0, we require the same minor version because // we may still break the ABI at this point -static CLAP_NODISCARD CLAP_CONSTEXPR inline bool +CLAP_NODISCARD static inline CLAP_CONSTEXPR bool clap_version_is_compatible(const clap_version_t v) { return v.major == CLAP_VERSION_MAJOR && v.minor == CLAP_VERSION_MINOR; }