Skip to content

Commit 382f116

Browse files
committed
use xxhash output type
1 parent 4dfa379 commit 382f116

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

flatbuffers/context.fbs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ struct Signature {
1010
signature:[ubyte:64];
1111
}
1212

13+
struct XXHash {
14+
hash:[ubyte:8];
15+
}
16+
1317
struct Hash {
1418
hash:[ubyte:32];
1519
}

flatbuffers/elf.fbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ table ELFLoaderCtx {
1313

1414
table ELFLoaderEffects {
1515
err_code:ubyte;
16-
rodata_hash:ulong;
16+
rodata_hash:XXHash;
1717
text_cnt:ulong;
1818
text_off:ulong;
1919
entry_pc:ulong;
20-
calldests_hash:ulong;
20+
calldests_hash:XXHash;
2121
}
2222

2323
table ELFLoaderFixture {

0 commit comments

Comments
 (0)