diff options
Diffstat (limited to 'architecture.cpp')
| -rw-r--r-- | architecture.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/architecture.cpp b/architecture.cpp index 0d010d0e..576a14e3 100644 --- a/architecture.cpp +++ b/architecture.cpp @@ -20,6 +20,11 @@ void InstructionInfo::AddBranch(BNBranchType type, uint64_t target) } +InstructionTextToken::InstructionTextToken(): type(TextToken), value(0) +{ +} + + InstructionTextToken::InstructionTextToken(BNInstructionTextTokenType t, const std::string& txt, uint64_t val) : type(t), text(txt), value(val) { |
