From 39fcc3a5891261b3d0189c5726ee13bbbc44becf Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 14 Nov 2018 00:44:17 -0500 Subject: [PATCH] service: Mark MakeFunctionString with the [[maybe_unused]] attribute. When yuzu is compiled in release mode this function is unused, however, when compiled in debug mode, it's used within a LOG_TRACE statement. This prevents erroneous compilation warnings about an unused function (that isn't actually totally unused). --- src/core/hle/service/service.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index d4112fc21..795f720e3 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -117,8 +117,8 @@ const std::array service_module_map{ * Creates a function string for logging, complete with the name (or header code, depending * on what's passed in) the port name, and all the cmd_buff arguments. */ -static std::string MakeFunctionString(const char* name, const char* port_name, - const u32* cmd_buff) { +[[maybe_unused]] static std::string MakeFunctionString(const char* name, const char* port_name, + const u32* cmd_buff) { // Number of params == bits 0-5 + bits 6-11 int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F);