From 193dea95daedde471e6f1fbcbeaf1932c6fbd50c Mon Sep 17 00:00:00 2001 From: Rubens Brandao Date: Sat, 6 Apr 2024 16:32:00 -0300 Subject: replace BStr with str --- rust/examples/flowgraph/src/lib.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'rust/examples/flowgraph/src') diff --git a/rust/examples/flowgraph/src/lib.rs b/rust/examples/flowgraph/src/lib.rs index f80879e5..0375705d 100644 --- a/rust/examples/flowgraph/src/lib.rs +++ b/rust/examples/flowgraph/src/lib.rs @@ -3,16 +3,15 @@ use binaryninja::{ command::register, disassembly::{DisassemblyTextLine, InstructionTextToken, InstructionTextTokenContents}, flowgraph::{BranchType, EdgePenStyle, EdgeStyle, FlowGraph, FlowGraphNode, ThemeColor}, - string::BnString, }; fn test_graph(view: &BinaryView) { let graph = FlowGraph::new(); let disassembly_lines_a = vec![DisassemblyTextLine::from(vec![ - InstructionTextToken::new(BnString::new("Li"), InstructionTextTokenContents::Text), - InstructionTextToken::new(BnString::new("ne"), InstructionTextTokenContents::Text), - InstructionTextToken::new(BnString::new(" 1"), InstructionTextTokenContents::Text), + InstructionTextToken::new("Li", InstructionTextTokenContents::Text), + InstructionTextToken::new("ne", InstructionTextTokenContents::Text), + InstructionTextToken::new(" 1", InstructionTextTokenContents::Text), ])]; let node_a = FlowGraphNode::new(&graph); -- cgit v1.3.1