Robin Gareus
650f027a9b
Fixes excessive warnings when compiling on macOS. This will be overwritten with the identical upstream fix https://github.com/steinbergmedia/vst3_pluginterfaces/blob/master/base/falignpush.h with the next tools/update_vst3.sh run
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
//-----------------------------------------------------------------------------
|
|
// Project : SDK Core
|
|
//
|
|
// Category : SDK Core Interfaces
|
|
// Filename : pluginterfaces/base/falignpush.h
|
|
// Created by : Steinberg, 01/2004
|
|
// Description : Set alignment settings
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
// This file is part of a Steinberg SDK. It is subject to the license terms
|
|
// in the LICENSE file found in the top-level directory of this distribution
|
|
// and at www.steinberg.net/sdklicenses.
|
|
// No part of the SDK, including this file, may be copied, modified, propagated,
|
|
// or distributed except according to the terms contained in the LICENSE file.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//----------------------------------------------------------------------------------------------
|
|
#if SMTG_OS_MACOS
|
|
#pragma GCC diagnostic ignored "-Wunknown-warning-option"
|
|
#pragma GCC diagnostic ignored "-Wpragma-pack"
|
|
#if SMTG_PLATFORM_64
|
|
#pragma pack(push, 16)
|
|
#else
|
|
#pragma pack(push, 1)
|
|
#endif
|
|
#elif defined __BORLANDC__
|
|
#pragma -a8
|
|
#elif SMTG_OS_WINDOWS
|
|
#pragma pack(push)
|
|
#if SMTG_PLATFORM_64
|
|
#pragma pack(16)
|
|
#else
|
|
#pragma pack(8)
|
|
#endif
|
|
#endif
|
|
//----------------------------------------------------------------------------------------------
|