您的位置:首页 > 理论基础 > 数据结构算法

GCC主要数据结构之cpp_builtin_type

2017-03-19 11:09 183 查看
cpp_builtin_type:

/* Different flavors of builtin macro.  _Pragma is an operator, but we
   handle it with the builtin code for efficiency reasons.  */
enum cpp_builtin_type
{
  BT_SPECLINE = 0,  /* `__LINE__' */
  BT_DATE,   /* `__DATE__' */
  BT_FILE,   /* `__FILE__' */
  BT_BASE_FILE,   /* `__BASE_FILE__' */
  BT_INCLUDE_LEVEL,  /* `__INCLUDE_LEVEL__' */
  BT_TIME,   /* `__TIME__' */
  BT_STDC,   /* `__STDC__' */
  BT_PRAGMA,   /* `_Pragma' operator */
  BT_TIMESTAMP,   /* `__TIMESTAMP__' */
  BT_COUNTER,   /* `__COUNTER__' */
  BT_HAS_ATTRIBUTE,  /* `__has_attribute__(x)' */
  BT_FIRST_USER,  /* User defined builtin macros.  */
  BT_LAST_USER = BT_FIRST_USER + 31
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: