美文网首页
#if QT_HAS_CPP_ATTRIBUTE(clang::

#if QT_HAS_CPP_ATTRIBUTE(clang::

作者: XBruce | 来源:发表于2021-03-31 09:12 被阅读0次

QT编译时出现指示以下头文件有错误:

#if defined(__cplusplus)
#if __has_cpp_attribute(clang::fallthrough)
#    define Q_FALLTHROUGH() [[clang::fallthrough]]
#elif __has_cpp_attribute(gnu::fallthrough)
#    define Q_FALLTHROUGH() [[gnu::fallthrough]]
#elif __has_cpp_attribute(fallthrough)
#  define Q_FALLTHROUGH() [[fallthrough]]
#endif
#endif

改为:

#if defined(__cplusplus)
#if defined(__clang__)
#if QT_HAS_CPP_ATTRIBUTE(clang::fallthrough)
#    define Q_FALLTHROUGH() [[clang::fallthrough]]
#endif
#elif defined(__GNUC__)
#if QT_HAS_CPP_ATTRIBUTE(gnu::fallthrough)
#    define Q_FALLTHROUGH() [[gnu::fallthrough]]
#endif
#elif QT_HAS_CPP_ATTRIBUTE(fallthrough)
#  define Q_FALLTHROUGH() [[fallthrough]]
#endif
#endif

相关文章

网友评论

      本文标题:#if QT_HAS_CPP_ATTRIBUTE(clang::

      本文链接:https://www.haomeiwen.com/subject/ivdoxltx.html