diff options
author | drh <drh@noemail.net> | 2015-12-02 20:40:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-12-02 20:40:26 +0000 |
commit | 1bb15fc973f5b1b472897095f629abcc663bd453 (patch) | |
tree | 4eda31846a69354eb5ba5ff9dc91602a18d942ac /src/bitvec.c | |
parent | 769dc6e2a22b3104583ad357b01f31a22e146a5c (diff) | |
parent | f7ce4291a94573cdb04e5f3fcf59ed9e69226479 (diff) | |
download | sqlite-1bb15fc973f5b1b472897095f629abcc663bd453.tar.gz sqlite-1bb15fc973f5b1b472897095f629abcc663bd453.zip |
Merge recent enhancements from trunk.
FossilOrigin-Name: d1a1278d7f3306536dc9cbd8fb300898f1e373e8
Diffstat (limited to 'src/bitvec.c')
-rw-r--r-- | src/bitvec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bitvec.c b/src/bitvec.c index fd908f791..f7f544cff 100644 --- a/src/bitvec.c +++ b/src/bitvec.c @@ -41,7 +41,8 @@ /* Round the union size down to the nearest pointer boundary, since that's how ** it will be aligned within the Bitvec struct. */ -#define BITVEC_USIZE (((BITVEC_SZ-(3*sizeof(u32)))/sizeof(Bitvec*))*sizeof(Bitvec*)) +#define BITVEC_USIZE \ + (((BITVEC_SZ-(3*sizeof(u32)))/sizeof(Bitvec*))*sizeof(Bitvec*)) /* Type of the array "element" for the bitmap representation. ** Should be a power of 2, and ideally, evenly divide into BITVEC_USIZE. |