Cleanup: quiet unused argument warning

This commit is contained in:
Campbell Barton
2025-02-07 10:45:17 +11:00
parent 906e8cacc1
commit b3f45d8e6b

View File

@@ -56,7 +56,7 @@ static std::optional<StringRefNull> pgettext(StringRef msgctxt, const StringRef
return BPY_app_translations_py_pgettext(msgctxt, msgid);
# endif
#else
(void)msgctxt;
UNUSED_VARS(msgctxt, msgid);
return std::nullopt;
#endif
}