diff options
| author | Tyge Løvset <[email protected]> | 2022-12-19 10:13:36 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-12-19 10:13:36 +0100 |
| commit | 6167fa5e361b2954440594cb693f25f643eb9e0a (patch) | |
| tree | 4e30a01b7274fcc4bedc24d442625d8187130d33 /include/stc/cbits.h | |
| parent | 1d4ad83d6f3388982cb0aeadbc9815b4776df504 (diff) | |
| download | STC-modified-6167fa5e361b2954440594cb693f25f643eb9e0a.tar.gz STC-modified-6167fa5e361b2954440594cb693f25f643eb9e0a.zip | |
Some "internal" macros in ccommon.h made all caps.
Diffstat (limited to 'include/stc/cbits.h')
| -rw-r--r-- | include/stc/cbits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stc/cbits.h b/include/stc/cbits.h index 8c0db10f..3c187e78 100644 --- a/include/stc/cbits.h +++ b/include/stc/cbits.h @@ -114,7 +114,7 @@ STC_INLINE bool _cbits_disjoint(const uint64_t* set, const uint64_t* other, cons #endif // CBITS_H_INCLUDED -#define _i_memb(name) c_paste(i_type, name) +#define _i_memb(name) c_PASTE(i_type, name) #if !defined i_capacity // DYNAMIC SIZE BITARRAY @@ -190,7 +190,7 @@ STC_INLINE cbits cbits_with_pattern(const size_t size, const uint64_t pattern) { #define _i_assert(x) (void)0 #ifndef i_type -#define i_type c_paste(cbits, i_capacity) +#define i_type c_PASTE(cbits, i_capacity) #endif struct { uint64_t data64[(i_capacity - 1)/64 + 1]; } typedef i_type; |
