我<stdint.h>在使用-std=c++0xGCC 4.4.3(适用于Android)时遇到麻烦:
// using -std=c++0x
#include <stdint.h>
uint64_t value; // error: 'uint64_t' does not name a type
Run Code Online (Sandbox Code Playgroud)
但使用-std=gnu++0x作品:
// using -std=gnu++0x
#include <stdint.h>
uint64_t value; // OK
Run Code Online (Sandbox Code Playgroud)
是<stdint.h>使用C++ 0x中不兼容?
最近,我搜索有关renderscript的文章,但似乎没有.任何人都可以给我一些谈论renderscript的文章吗?