diff options
Diffstat (limited to 'src/common.cc')
-rw-r--r-- | src/common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.cc b/src/common.cc index d0fc77b1..7884d2ca 100644 --- a/src/common.cc +++ b/src/common.cc @@ -31,7 +31,7 @@ namespace wabt { -Reloc::Reloc(RelocType type, size_t offset, uint32_t index, int32_t addend) +Reloc::Reloc(RelocType type, Offset offset, Index index, int32_t addend) : type(type), offset(offset), index(index), addend(addend) {} const char* g_kind_name[] = {"func", "table", "memory", "global"}; |