diff options
author | 2021-03-14 03:16:02 +0200 | |
---|---|---|
committer | 2021-03-14 03:50:37 +0200 | |
commit | 56f20e30636c16fd14205ba7c29cf8089caa1260 (patch) | |
tree | 24f948294d6a28a5ea47c983e1cade078357b3ef /src/defs.h | |
parent | c68444ff76eff88fbfa63a3ddbd6b9ce72337159 (diff) | |
download | algos-ld1-56f20e30636c16fd14205ba7c29cf8089caa1260.tar.gz algos-ld1-56f20e30636c16fd14205ba7c29cf8089caa1260.tar.bz2 algos-ld1-56f20e30636c16fd14205ba7c29cf8089caa1260.zip |
revert higher-than-64-bits support.
Too much hassle to actually pretty-print that crap out.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/defs.h')
-rw-r--r-- | src/defs.h | 31 |
1 files changed, 0 insertions, 31 deletions
@@ -49,37 +49,6 @@ # 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 { - uint64_t low; - int64_t high; - } field; -# else - typedef struct field { - uint64_t low; - uint64_t high; - } field; -# endif -#elif entry_field_size == 256 -# ifdef entry_field_signed - typedef struct field { - uint64_t low; - uint64_t midlow; - uint64_t midhigh; - int64_t high; - } field; -# else - typedef struct field { - uint64_t low; - uint64_t midlow; - uint64_t midhigh; - uint64_t high; - } field; -# endif #endif union nextoff { |