浏览代码

build: work around a bug in the NaCl SDK C++ headers.

legacy
Sam Hocevar sam 11 年前
父节点
当前提交
f2560ff5b8
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      src/core.h

+ 7
- 0
src/core.h 查看文件

@@ -78,6 +78,13 @@ static inline int isnan(float f)
}
#endif


/* XXX: workaround for a compilation bug in NaCl headers */
#if defined __native_client__
# define typeid(x) (*(type_info*)nullptr)
#endif


/* External declaration for LolFx files. */
#define LOLFX_RESOURCE_DECLARE(name) \
extern "C" char const *LOLFX_RESOURCE_NAME(name)


正在加载...
取消
保存