diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-04-26 16:38:14 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2019-04-26 16:38:14 -0400 |
| commit | 453eb5bdc70513464c7137f910cba815289c97a0 (patch) | |
| tree | 2bdf1ebdaf00748fcf631d58486afe97d6da3197 /binaryninjaapi.h | |
| parent | 0911788d1183d061eabe1d9084d4eb866c032938 (diff) | |
Don't let a node that hasn't been added to the graph be added as an edge target
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 6a4b1bc1..1b0232fc 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -2742,6 +2742,8 @@ namespace BinaryNinja BNHighlightColor GetHighlight() const; void SetHighlight(const BNHighlightColor& color); + + bool IsValidForGraph(FlowGraph* graph) const; }; class FlowGraphLayoutRequest: public RefCountObject |
