core.h: remove nodiscard for SendSignal (#5837)

We use this in four places and discard the result everywhere
This commit is contained in:
SachinVin 2021-09-06 21:27:11 +05:30 committed by GitHub
parent 89410c164a
commit a1b4daa9d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,7 +122,7 @@ public:
enum class Signal : u32 { None, Shutdown, Reset, Save, Load };
[[nodiscard]] bool SendSignal(Signal signal, u32 param = 0);
bool SendSignal(Signal signal, u32 param = 0);
/// Request reset of the system
void RequestReset() {