You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@enh-google saw our endian.h and mentioned `__BIONIC_CAST`.
https://android.googlesource.com/platform/bionic/+/main/libc/include/sys/cdefs.h#57
```c++
#if defined(__cplusplus)
#define __BIONIC_CAST(_k,_t,_v) (_k<_t>(_v))
#else
#define __BIONIC_CAST(_k,_t,_v) ((_t) (_v))
#endif
```
maybe interesting to add that to libc/include/__llvm-libc-common.h and use more in our user facing headers.
@enh-google saw our endian.h and mentioned
__BIONIC_CAST
.https://android.googlesource.com/platform/bionic/+/main/libc/include/sys/cdefs.h#57
maybe interesting to add that to libc/include/__llvm-libc-common.h and use more in our user facing headers.
The text was updated successfully, but these errors were encountered: