fix: add missing [[maybe_unused]] to IsEnvSet (#33224)
This commit is contained in:
parent
f372953256
commit
039c061d07
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
|||
|
||||
namespace {
|
||||
|
||||
bool IsEnvSet(const char* name) {
|
||||
[[maybe_unused]] bool IsEnvSet(const char* name) {
|
||||
char* indicator = getenv(name);
|
||||
return indicator && indicator[0] != '\0';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue