mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Removal of the --enable-int64 config option.
This will now be always on. As such, uses of the USE_INT64 preprocessor definition have been cleaned out.
This commit is contained in:
parent
5cad4c8789
commit
13569aaab7
11 changed files with 2 additions and 66 deletions
|
@ -24,9 +24,7 @@ class HashKey {
|
|||
public:
|
||||
HashKey(bro_int_t i);
|
||||
HashKey(bro_uint_t u);
|
||||
#ifdef USE_INT64
|
||||
HashKey(uint32 u);
|
||||
#endif
|
||||
HashKey(const uint32 u[], int n);
|
||||
HashKey(double d);
|
||||
HashKey(const void* p);
|
||||
|
@ -78,9 +76,7 @@ protected:
|
|||
|
||||
union {
|
||||
bro_int_t i;
|
||||
#ifdef USE_INT64
|
||||
uint32 u32;
|
||||
#endif
|
||||
double d;
|
||||
const void* p;
|
||||
} key_u;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue