diff options
| author | EliseZeroTwo <mail@elise.moe> | 2022-01-22 13:51:12 +0100 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2022-01-24 23:53:20 -0500 |
| commit | 6d49c02eb3c1fbf61629b79f87ca7abf0700ccce (patch) | |
| tree | 8944d7e9fbed55140eec38b4470d0cbab5a24672 /rust/src/llil | |
| parent | f8949225ef1af7051e35f6f0a79581876f03f6c2 (diff) | |
chore: rust: add common useful derive macros to enums that are missing it
Diffstat (limited to 'rust/src/llil')
| -rw-r--r-- | rust/src/llil/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/llil/mod.rs b/rust/src/llil/mod.rs index 198d8373..862cf4ae 100644 --- a/rust/src/llil/mod.rs +++ b/rust/src/llil/mod.rs @@ -87,6 +87,7 @@ impl<R: ArchReg> SSARegister<R> { } } +#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] pub enum VisitorAction { Descend, Sibling, |
