Skip to content

Commit

Permalink
chore: cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ggiraldez committed Feb 6, 2024
1 parent a7a6c1e commit 028a0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/debugger/src/dap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ impl<'a, R: Read, W: Write, B: BlackBoxFunctionSolver> DapSession<'a, R, W, B> {
}

pub fn run_loop(&mut self) -> Result<(), ServerError> {
self.running = !self.context.get_current_opcode_location().is_none();
self.running = self.context.get_current_opcode_location().is_some();

if self.running && matches!(self.context.get_current_source_location(), None) {
// TODO: remove this? This is to ensure that the tool has a proper
Expand Down

0 comments on commit 028a0b6

Please sign in to comment.