Mercurial > hg > pub > prymula > com
comparison DPF-Prymula-audioplugins/dpf/distrho/src/travesty/align_push.h @ 3:84e66ea83026
DPF-Prymula-audioplugins-0.231015-2
author | prymula <prymula76@outlook.com> |
---|---|
date | Mon, 16 Oct 2023 21:53:34 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:cf2cb71d31dd | 3:84e66ea83026 |
---|---|
1 /* | |
2 * travesty, pure C VST3-compatible interface | |
3 * Copyright (C) 2021 Filipe Coelho <falktx@falktx.com> | |
4 * | |
5 * Permission to use, copy, modify, and/or distribute this software for any purpose with | |
6 * or without fee is hereby granted, provided that the above copyright notice and this | |
7 * permission notice appear in all copies. | |
8 * | |
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD | |
10 * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN | |
11 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL | |
12 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER | |
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN | |
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
15 */ | |
16 | |
17 #if defined(__APPLE__) | |
18 | |
19 # if defined(__clang__) | |
20 # pragma clang diagnostic push | |
21 # pragma clang diagnostic ignored "-Wunknown-warning-option" | |
22 # pragma clang diagnostic ignored "-Wpragma-pack" | |
23 # elif defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 460 | |
24 # pragma GCC diagnostic push | |
25 # pragma GCC diagnostic ignored "-Wunknown-warning-option" | |
26 # pragma GCC diagnostic ignored "-Wpragma-pack" | |
27 # endif | |
28 | |
29 # if defined(__LP64__) || defined(_LP64) | |
30 # pragma pack(push, 16) | |
31 # else | |
32 # pragma pack(push, 1) | |
33 # endif | |
34 | |
35 #elif defined(_WIN32) | |
36 | |
37 # pragma pack(push) | |
38 # if defined(_WIN64) || defined(_M_ARM64) | |
39 # pragma pack(16) | |
40 # else | |
41 # pragma pack(8) | |
42 # endif | |
43 | |
44 #endif |