summaryrefslogtreecommitdiff
path: root/rust/src/binaryview.rs
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-05-10 17:06:08 -0400
committerKyleMiles <krm504@nyu.edu>2023-05-10 17:45:16 -0400
commita0af66644235cc8300f4b443ae90da84f901569d (patch)
treed6654f2068425d09f836baf0fd74fbae9d121e46 /rust/src/binaryview.rs
parent1f776b8b1e119d5b9eda0d51ae43b790375e7b91 (diff)
Rust API : Minor cleanup of PR
Diffstat (limited to 'rust/src/binaryview.rs')
-rw-r--r--rust/src/binaryview.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/binaryview.rs b/rust/src/binaryview.rs
index 3f50c001..fbbe4a58 100644
--- a/rust/src/binaryview.rs
+++ b/rust/src/binaryview.rs
@@ -476,6 +476,7 @@ pub trait BinaryViewExt: BinaryViewBase {
}
}
+ /// You likely would also like to call [`define_user_symbol`] to bind this data variable with a name
fn define_user_data_var(&self, dv: DataVariable) {
unsafe {
BNDefineUserDataVariable(self.as_ref().handle, dv.address, &mut dv.t.into());