clap

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

commit e593628dd91965969ca4e28a79317864889e860f
parent 90a1ca3781424aef2f55c6f3b521b5783dc9cdaa
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Tue, 21 Dec 2021 11:29:43 +0100

fix bad pragma pack(pop)

Diffstat:
Minclude/clap/ext/gui-x11.h | 2+-
Minclude/clap/ext/thread-pool.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/ext/gui-x11.h b/include/clap/ext/gui-x11.h @@ -17,7 +17,7 @@ typedef struct clap_plugin_gui_x11 { bool (*attach)(const clap_plugin_t *plugin, const char *display_name, unsigned long window); } clap_plugin_gui_x11_t; -#pragma pack(pop, CLAP_ALIGN) +#pragma pack(pop) #ifdef __cplusplus } diff --git a/include/clap/ext/thread-pool.h b/include/clap/ext/thread-pool.h @@ -63,7 +63,7 @@ typedef struct clap_host_thread_pool { bool (*request_exec)(const clap_host_t *host, uint32_t num_tasks); } clap_host_thread_pool_t; -#pragma pack(pop, CLAP_ALIGN) +#pragma pack(pop) #ifdef __cplusplus }