1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix over-length source code lines. No logic changes.

FossilOrigin-Name: 198d191b2f5ef7d63ac0093c701955c9052fd734
This commit is contained in:
drh
2015-11-21 17:27:42 +00:00
parent 202923107d
commit 62aaa6ca88
11 changed files with 39 additions and 31 deletions

View File

@@ -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.