Sagar Dagdu

Results 14 comments of Sagar Dagdu

@Orvid It works if I remove the `using` directive and change it to `typedef`, it works correctly on Xcode: ```c #if defined(__APPLE__) || defined(__EMSCRIPTEN__) typedef off_t off64_t; // Use typedef...

@Orvid I have created a pull request: https://github.com/facebook/folly/pull/2248. Please approve whenever you check it, thanks for actively conversing about the issue here.

> If apple is defining `off64_t` via `#define` then the thing to do would be to `#if !defined(off64_t)` around that line. Does that happen to work? I'll check this today

Hi @yfeldblum , the `#if !defined(off64_t)` approach does not work. I guess Apple is not already defining the `off64_t` type.