GCC Wikia
Advertisement

このページを編集する際は,編集に関する方針に従ってください.[]

概要[]

引数[]

  • NAME
    • 変数名

実装[]

  272: /* Before GCC 3.4, the C++ frontend couldn't parse attributes placed after the
  273:    identifier name.  */
274: #if ! defined(__cplusplus) || (GCC_VERSION >= 3004)
275: # define ARG_UNUSED(NAME) NAME ATTRIBUTE_UNUSED
276: #else /* !__cplusplus || GNUC >= 3.4 */
277: # define ARG_UNUSED(NAME) NAME
278: #endif /* !__cplusplus || GNUC >= 3.4 */


リンク元

Advertisement