diff options
author | 2021-03-03 19:58:57 +0200 | |
---|---|---|
committer | 2021-03-03 19:58:57 +0200 | |
commit | d7e2af2582660e3ed4ce824c33a21ffbf9ed4c6f (patch) | |
tree | b515c5988331dd668b91047193b1d4ca78544e14 | |
parent | 56473644aa260aad93f21050a2064854a3448c13 (diff) | |
download | algos-ld1-d7e2af2582660e3ed4ce824c33a21ffbf9ed4c6f.tar.gz algos-ld1-d7e2af2582660e3ed4ce824c33a21ffbf9ed4c6f.tar.bz2 algos-ld1-d7e2af2582660e3ed4ce824c33a21ffbf9ed4c6f.zip |
bit of comments.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
-rw-r--r-- | src/defs.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -23,6 +23,8 @@ goto l;\ }} while (0); +/* 8 to 64 bits fit into basic types */ + #if entry_field_size == 8 # ifdef entry_field_signed typedef int8_t field; @@ -47,6 +49,9 @@ # else typedef uint64_t field; # endif + +/* 128 bit and up do not fit in basic types; building composites */ + #elif entry_field_size == 128 # ifdef entry_field_signed typedef struct field { |