named-data-iot/ndn-lite

bitset_log2: not standard C11

Closed this issue · 1 comments

The codebase claims to conform to standard C11. However, bitset_log2 is calling __builtin_ctz that is not part of C11 standard. It's necessary to provide an implementation that conforms to the standard, and only use __builtin_ctz inside feature test macros.

fixed in c3a66cc