[PATCH] D50876: Clean up newly created <bit> header

Marshall Clow via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 17 07:58:25 PDT 2018


mclow.lists added inline comments.


================
Comment at: include/bit:61
+inline _LIBCPP_INLINE_VISIBILITY
+int __popcount(unsigned __x)           { return __builtin_popcount  (__x); }
+
----------------
ldionne wrote:
> Funny spacing between `__builtin_popcount` and `(__x)`
It's actually there to line up with the ones below.
(Though now that I look, I didn't do that for the ones above)


https://reviews.llvm.org/D50876





More information about the cfe-commits mailing list