/* SPDX-FileCopyrightText: 2017 Kevin Funk SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef KDEVELOP_QTCOMPAT_P_H #define KDEVELOP_QTCOMPAT_P_H #include #include #if QT_VERSION < QT_VERSION_CHECK(5, 7, 0) namespace QtPrivate { template struct QAddConst { typedef const T Type; }; } // this adds const to non-const objects (like std::as_const) template Q_DECL_CONSTEXPR typename QtPrivate::QAddConst::Type &qAsConst(T &t) Q_DECL_NOTHROW { return t; } // prevent rvalue arguments: template void qAsConst(const T &&) Q_DECL_EQ_DELETE; #endif #if QT_VERSION < QT_VERSION_CHECK(5, 7, 0) template struct QNonConstOverload { template static constexpr auto of(R (T::*func)(Args...)) noexcept -> decltype(func) { return func; } }; template struct QConstOverload { template static constexpr auto of(R (T::*func)(Args...) const) noexcept -> decltype(func) { return func; } }; template struct QOverload : QConstOverload, QNonConstOverload { using QConstOverload::of; using QNonConstOverload::of; template static constexpr auto of(R (*func)(Args...)) noexcept -> decltype(func) { return func; } }; #endif // compat for Q_FALLTHROUGH #if QT_VERSION < QT_VERSION_CHECK(5, 8, 0) #if defined(__has_cpp_attribute) #if __has_cpp_attribute(fallthrough) #define Q_FALLTHROUGH() [[fallthrough]] #elif __has_cpp_attribute(clang::fallthrough) #define Q_FALLTHROUGH() [[clang::fallthrough]] #elif __has_cpp_attribute(gnu::fallthrough) #define Q_FALLTHROUGH() [[gnu::fallthrough]] #endif #endif #ifndef Q_FALLTHROUGH #if defined(__GNUC__) && !defined(__INTEL_COMPILER) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 700) #define Q_FALLTHROUGH() __attribute__((fallthrough)) #else #define Q_FALLTHROUGH() (void)0 #endif #endif #endif namespace QtCompat { // TODO: Just use QDir::listSeparator once we depend on Qt 5.6 Q_DECL_CONSTEXPR inline QChar listSeparator() Q_DECL_NOTHROW { #if QT_VERSION < QT_VERSION_CHECK(5, 6, 0) #ifdef Q_OS_WIN return QLatin1Char(';'); #else return QLatin1Char(':'); #endif #else return QDir::listSeparator(); #endif } } #endif