mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
bf7954ebe7
LOG_STP is on longer providing the data needed, since a lot of the startup is indirectly in QML, furthermore using the xcode project and running profiler gives much more detailed information Signed-off-by: Jan Iversen <jani@apache.org>
22 lines
383 B
C
22 lines
383 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef SSRF_H
|
|
#define SSRF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __clang__
|
|
// Clang has a bug on zero-initialization of C structs.
|
|
#pragma clang diagnostic ignored "-Wmissing-field-initializers"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#else
|
|
|
|
// Macro to be used for silencing unused parameters
|
|
#define UNUSED(x) (void)x
|
|
#endif
|
|
|
|
#endif // SSRF_H
|