enforce Errors For Warnings deprecated-copy deprecated-declarations stringop-overread

This commit is contained in:
LoudSnorer 2023-02-18 18:42:41 -05:00
parent e7c690925e
commit 651c612eda
5 changed files with 23 additions and 12 deletions

View File

@ -25,6 +25,7 @@ class Preferences;
enum OverviewLinechartModes { OLC_Bartop, OLC_Lines };
#endif
#define REMSTAR_M_SUPPORTdisabled
// ApplicationWideSettings Strings
const QString STR_CS_UserEventPieChart = "UserEventPieChart";

View File

@ -7,11 +7,12 @@
* License. See the file COPYING in the main directory of the source code
* for more details. */
#include "mseries_loader.h"
#ifdef REMSTAR_M_SUPPORT
#include <QDir>
#include <QProgressBar>
#include "mseries_loader.h"
// The qt5.15 obsolescence of hex requires this change.
// this solution to QT's obsolescence is only used in debug statements
#if QT_VERSION >= QT_VERSION_CHECK(5,15,0)
@ -499,3 +500,4 @@ void MSeriesLoader::Register()
//InitModelMap();
mseries_initialized = true;
}
#endif // REMSTAR_M_SUPPORT

View File

@ -13,6 +13,9 @@
#ifndef MSERIES_LOADER_H
#define MSERIES_LOADER_H
#include "SleepLib/appsettings.h"
#ifdef REMSTAR_M_SUPPORT
#include "SleepLib/machine.h"
#include "SleepLib/machine_loader.h"
#include "SleepLib/profiles.h"
@ -74,4 +77,5 @@ class MSeriesLoader : public MachineLoader
quint32 epoch;
};
#endif // REMSTAR_M_SUPPORT
#endif // MSERIES_LOADER_H

View File

@ -42,6 +42,7 @@
#include "common_gui.h"
#include "version.h"
#include "SleepLib/appsettings.h" // defines for REMSTAR_M_SUPPORT
// Custom loaders that don't autoscan..

View File

@ -551,23 +551,26 @@ gcc | clang {
gcc:!clang {
message("Building for $$QMAKE_HOST.os")
greaterThan(COMPILER_MAJOR, 10) : {
QMAKE_CFLAGS += -Wno-error=stringop-overread
QMAKE_CXXFLAGS += -Wno-error=stringop-overread
message("Making stringop-overread a non-error")
}
# this section removedi. stringop-overread was only trigger by mseries_loader:: OPen method
#greaterThan(COMPILER_MAJOR, 10) : {
# QMAKE_CFLAGS += -Wno-error=stringop-overread
# QMAKE_CXXFLAGS += -Wno-error=stringop-overread
# message("Making stringop-overread a non-error")
#}
}
clang {
message("Building for $$QMAKE_HOST.os")
greaterThan(COMPILER_MAJOR, 9) : {
QMAKE_CFLAGS_WARN_ON += -Wno-error=deprecated-copy
QMAKE_CXXFLAGS_WARN_ON += -Wno-error=deprecated-copy
message("Making deprecated-copy a non-error")
}
# this section removedi. all deprecated-copy errors have been removed
#greaterThan(COMPILER_MAJOR, 9) : {
# QMAKE_CFLAGS_WARN_ON += -Wno-error=deprecated-copy
# QMAKE_CXXFLAGS_WARN_ON += -Wno-error=deprecated-copy
# message("Making deprecated-copy a non-error")
#}
}
# Make deprecation warnings just warnings
# these two removed. all deprecated-declarations errors have been removed
QMAKE_CFLAGS += -Wno-error=deprecated-declarations
QMAKE_CXXFLAGS += -Wno-error=deprecated-declarations