summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-12-07 16:24:36 -0500
committerPeter LaFosse <peter@vector35.com>2018-12-13 13:32:18 -0500
commit7357dd114a145ca64e7356233c3cb8b9dd9eae84 (patch)
treec78809a950bb7a7c47c38631c5d635c4b691781f /binaryninjaapi.h
parent4e07d8c4bd8cfbd3e56b7a233483c8efe5b84300 (diff)
Make ParseExpression not dependant on a BinaryView
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 2fde0526..18bc4b76 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -1495,7 +1495,7 @@ namespace BinaryNinja
static NameSpace GetInternalNameSpace();
static NameSpace GetExternalNameSpace();
- bool ParseExpression(const std::string& expression, uint64_t &offset, uint64_t here, std::string& errorString);
+ static bool ParseExpression(Ref<BinaryView> view, const std::string& expression, uint64_t &offset, uint64_t here, std::string& errorString);
};