From 68198de4dbe71ae97dc733606871f51bde804c1e Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Wed, 19 Aug 2020 19:11:37 +0200 Subject: Use C++17 [[maybe_unused]] In some places needs to be ordered before const/constexpr though. Change-Id: I57a521ac0ad22b5a018761c4d52befbef69d64c0 Reviewed-by: Thiago Macieira --- src/corelib/kernel/qsystemerror.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/corelib/kernel/qsystemerror.cpp') diff --git a/src/corelib/kernel/qsystemerror.cpp b/src/corelib/kernel/qsystemerror.cpp index 6a250f5f3a..619f94c476 100644 --- a/src/corelib/kernel/qsystemerror.cpp +++ b/src/corelib/kernel/qsystemerror.cpp @@ -61,11 +61,11 @@ namespace { // version in portable code. However, it's impossible to do that if // _GNU_SOURCE is defined so we use C++ overloading to decide what to do // depending on the return type - static inline Q_DECL_UNUSED QString fromstrerror_helper(int, const QByteArray &buf) + Q_DECL_UNUSED static inline QString fromstrerror_helper(int, const QByteArray &buf) { return QString::fromLocal8Bit(buf); } - static inline Q_DECL_UNUSED QString fromstrerror_helper(const char *str, const QByteArray &) + Q_DECL_UNUSED static inline QString fromstrerror_helper(const char *str, const QByteArray &) { return QString::fromLocal8Bit(str); } -- cgit v1.2.3