From c7e33d35b4adef40e53619662c7a6cfc198efd4a Mon Sep 17 00:00:00 2001 From: Xusheng Date: Tue, 21 Sep 2021 19:17:35 +0800 Subject: Better support for change type in linear view --- binaryninjaapi.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index bb104ef3..f3bea556 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1364,6 +1364,10 @@ __attribute__ ((format (printf, 1, 2))) bool hasTypeInfo; BinaryNinja::Ref parentType; size_t fieldIndex; + uint64_t offset; + + DisassemblyTextLineTypeInfo(): hasTypeInfo(false), parentType(nullptr), fieldIndex(-1), offset(0) + {} }; struct DisassemblyTextLine -- cgit v1.3.1