1616
1717#include "roaring_internal_inline.h"
1818
19-
2019#ifdef __cplusplus
2120using namespace ::roaring ::internal ;
2221
@@ -27,7 +26,8 @@ namespace api {
2726
2827#define CROARING_SERIALIZATION_ARRAY_UINT32 1
2928#define CROARING_SERIALIZATION_CONTAINER 2
30- extern inline bool roaring_bitmap_contains (const roaring_bitmap_t * r , uint32_t val );
29+ extern inline bool roaring_bitmap_contains (const roaring_bitmap_t * r ,
30+ uint32_t val );
3131extern inline int roaring_trailing_zeroes (unsigned long long input_num );
3232extern inline int roaring_leading_zeroes (unsigned long long input_num );
3333extern inline void roaring_bitmap_init_cleared (roaring_bitmap_t * r );
@@ -1832,8 +1832,8 @@ bool roaring_uint32_iterator_advance(roaring_uint32_iterator_t *it) {
18321832 return (it -> has_value = loadfirstvalue (it ));
18331833 }
18341834 uint16_t low16 = (uint16_t )it -> current_value ;
1835- if (container_iterator_next_inline (it -> container , it -> typecode , & it -> container_it ,
1836- & low16 )) {
1835+ if (container_iterator_next_inline (it -> container , it -> typecode ,
1836+ & it -> container_it , & low16 )) {
18371837 it -> current_value = it -> highbits | low16 ;
18381838 return (it -> has_value = true);
18391839 }
@@ -1850,8 +1850,8 @@ bool roaring_uint32_iterator_previous(roaring_uint32_iterator_t *it) {
18501850 return (it -> has_value = loadlastvalue (it ));
18511851 }
18521852 uint16_t low16 = (uint16_t )it -> current_value ;
1853- if (container_iterator_prev_inline (it -> container , it -> typecode , & it -> container_it ,
1854- & low16 )) {
1853+ if (container_iterator_prev_inline (it -> container , it -> typecode ,
1854+ & it -> container_it , & low16 )) {
18551855 it -> current_value = it -> highbits | low16 ;
18561856 return (it -> has_value = true);
18571857 }
0 commit comments