Suppress warnings.

This commit is contained in:
Roman Telezhynskyi 2023-02-22 08:46:16 +02:00
parent 321b41c435
commit a66b050ecd
2 changed files with 22 additions and 1 deletions

View file

@ -32,6 +32,14 @@
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
#include <QTextStream>
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
#include "qmudef.h"
#endif // QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wunused-variable")
namespace Qt
{
//static auto endl = ::endl;
@ -39,6 +47,9 @@ namespace Qt
static auto dec = ::dec;
//static auto SkipEmptyParts = QString::SkipEmptyParts;
}
QT_WARNING_POP
#endif
#endif // TEXT_H

View file

@ -29,9 +29,17 @@
#define TEXT_H
#include <QtGlobal>
#include <QString>
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
#include <QString>
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
#include "../vmisc/diagnostic.h"
#endif // QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wunused-variable")
namespace Qt
{
static auto endl = ::endl;
@ -39,6 +47,8 @@ static auto flush = ::flush;
static auto dec = ::dec;
static auto SkipEmptyParts = QString::SkipEmptyParts;
}
QT_WARNING_POP
#endif
#endif // TEXT_H