Skip to content

Commit

Permalink
Fix clippy warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
gz committed Jul 31, 2021
1 parent 29a0bad commit cc7bf67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4164,9 +4164,9 @@ impl ExtendedState {

pub fn location(&self) -> ExtendedRegisterStateLocation {
if self.is_in_xcr0() {
return ExtendedRegisterStateLocation::Xcr0;
ExtendedRegisterStateLocation::Xcr0
} else {
return ExtendedRegisterStateLocation::Ia32Xss;
ExtendedRegisterStateLocation::Ia32Xss
}
}

Expand Down

0 comments on commit cc7bf67

Please sign in to comment.