Skip to content
Snippets Groups Projects
Unverified Commit c95ded3a authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1688 from lioncash/unused

service: Mark MakeFunctionString with the [[maybe_unused]] attribute.
parents ebf1b58a 958fa15a
No related branches found
No related tags found
No related merge requests found
...@@ -80,8 +80,8 @@ namespace Service { ...@@ -80,8 +80,8 @@ namespace Service {
* Creates a function string for logging, complete with the name (or header code, depending * 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. * 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, [[maybe_unused]] static std::string MakeFunctionString(const char* name, const char* port_name,
const u32* cmd_buff) { const u32* cmd_buff) {
// Number of params == bits 0-5 + bits 6-11 // Number of params == bits 0-5 + bits 6-11
int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F); int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment