Linux 的结构体statx_timestamp中 __Reserved 在windows定义为宏 2022-12-07 16:01 | 6,214 | 0 | 踩坑日记 | Zero 160 字 | 1 分钟内 起因:在windows环境定义了一个结构体,结构如下。其实就是把linux上的某些struct抄了过来。 struct statx_timestamp { int64_t tv_sec; uint32_t tv_nsec; int32_t __reserved; }; 但是,在编译的时候出现了error C2208: “int”: 没有使用此类型进… __ReservedLinuxwindows