summaryrefslogtreecommitdiff
path: root/src/lib/smbclient/Init.cxx
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-03-12 12:56:11 -0700
committerRosen Penev <rosenp@gmail.com>2020-03-16 00:08:21 -0700
commit97425d56e7ad0ce19357b5d8984de082c0dacffc (patch)
treeceff26b07d79daa4fd2f93f2d37007f1f52de8f3 /src/lib/smbclient/Init.cxx
parent0afb156a5bbb23a9602ef3b8188e82e4afe300e4 (diff)
remove gcc_unused
[[maybe_unused]] (introduced in C++17) is standard C++. https://clang.llvm.org/docs/AttributeReference.html#maybe-unused-unused says that this is equivalent to the GNU unused attribute. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/lib/smbclient/Init.cxx')
-rw-r--r--src/lib/smbclient/Init.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/smbclient/Init.cxx b/src/lib/smbclient/Init.cxx
index fe2ee51b2..746b68925 100644
--- a/src/lib/smbclient/Init.cxx
+++ b/src/lib/smbclient/Init.cxx
@@ -27,11 +27,11 @@
#include <string.h>
static void
-mpd_smbc_get_auth_data(gcc_unused const char *srv,
- gcc_unused const char *shr,
- char *wg, gcc_unused int wglen,
- char *un, gcc_unused int unlen,
- char *pw, gcc_unused int pwlen)
+mpd_smbc_get_auth_data([[maybe_unused]] const char *srv,
+ [[maybe_unused]] const char *shr,
+ char *wg, [[maybe_unused]] int wglen,
+ char *un, [[maybe_unused]] int unlen,
+ char *pw, [[maybe_unused]] int pwlen)
{
// TODO: implement
strcpy(wg, "WORKGROUP");