configure_service: Only compile FormatEventStatusString when YUZU_ENABLE_BOXCAT is enabled
The function is unused if YUZU_ENABLE_BOXCAT is disabled, causing a -Wunused-funciton error when compiled. Wrapping it with `#ifdef YUZU_ENABLE_BOXCAT` to prevent compiling the function when the variable is disabled. Opting to not use [[maybe unused]] in case the function is totally unused in the future.
This commit is contained in:
parent
e8401964b4
commit
fb796843df
|
@ -9,6 +9,7 @@
|
||||||
#include "ui_configure_service.h"
|
#include "ui_configure_service.h"
|
||||||
#include "yuzu/configuration/configure_service.h"
|
#include "yuzu/configuration/configure_service.h"
|
||||||
|
|
||||||
|
#ifdef YUZU_ENABLE_BOXCAT
|
||||||
namespace {
|
namespace {
|
||||||
QString FormatEventStatusString(const Service::BCAT::EventStatus& status) {
|
QString FormatEventStatusString(const Service::BCAT::EventStatus& status) {
|
||||||
QString out;
|
QString out;
|
||||||
|
@ -32,6 +33,7 @@ QString FormatEventStatusString(const Service::BCAT::EventStatus& status) {
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
} // Anonymous namespace
|
} // Anonymous namespace
|
||||||
|
#endif
|
||||||
|
|
||||||
ConfigureService::ConfigureService(QWidget* parent)
|
ConfigureService::ConfigureService(QWidget* parent)
|
||||||
: QWidget(parent), ui(std::make_unique<Ui::ConfigureService>()) {
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureService>()) {
|
||||||
|
|
Reference in New Issue