blob: 2427c9f6e379e8189360bd939122cc682664a79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2025 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QBENCHLIB_CYCLE_INCLUDE_H
#define QBENCHLIB_CYCLE_INCLUDE_H
#include <QtCore/qcompilerdetection.h>
// This file suppresses compilation warnings coming from cycle_p.h.
// Include this file instead of cycle_p.h directly.
#define QBENCHLIB_INCLUDING_CYCLE_P
QT_WARNING_PUSH
QT_WARNING_DISABLE_CLANG("-Wundef")
QT_WARNING_DISABLE_GCC("-Wundef")
#include "cycle_p.h"
QT_WARNING_POP
#endif // QBENCHLIB_CYCLE_INCLUDE_H
|