diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-08-31 23:01:49 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2022-09-29 21:02:24 -0400 |
| commit | 460656be13999759eb1eeb5bd9a868b34c0aea22 (patch) | |
| tree | 8147e1028b4e6ca42dc4dc5c03f1453c13a8b1fc /rust/src/symbol.rs | |
| parent | e5af153f0b7964bf65ff9af07012d9a51ab0cd1c (diff) | |
Expose CallingConvention::GetVariablesForParameters
Diffstat (limited to 'rust/src/symbol.rs')
| -rw-r--r-- | rust/src/symbol.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/symbol.rs b/rust/src/symbol.rs index 2d5df068..2578bee2 100644 --- a/rust/src/symbol.rs +++ b/rust/src/symbol.rs @@ -280,7 +280,7 @@ unsafe impl<'a> CoreArrayWrapper<'a> for Symbol { impl PartialEq for Symbol { fn eq(&self, other: &Self) -> bool { - *self == *other + self.handle == other.handle } } |
