Browse Source
Merge pull request #1688 from lioncash/unused
service: Mark MakeFunctionString with the [[maybe_unused]] attribute.
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/core/hle/service/service.cpp
|
|
|
@ -80,8 +80,8 @@ namespace Service { |
|
|
|
* 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); |
|
|
|
|
|
|
|
|