aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/lldb/source/Target/UnixSignals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/lldb/source/Target/UnixSignals.cpp')
-rw-r--r--contrib/llvm-project/lldb/source/Target/UnixSignals.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/contrib/llvm-project/lldb/source/Target/UnixSignals.cpp b/contrib/llvm-project/lldb/source/Target/UnixSignals.cpp
index 4ae848a98edd..3ece3ee24cbe 100644
--- a/contrib/llvm-project/lldb/source/Target/UnixSignals.cpp
+++ b/contrib/llvm-project/lldb/source/Target/UnixSignals.cpp
@@ -300,14 +300,13 @@ UnixSignals::GetFilteredSignals(llvm::Optional<bool> should_suppress,
// If any of filtering conditions are not met, we move on to the next
// signal.
- if (should_suppress &&
- signal_suppress != should_suppress.getValue())
+ if (should_suppress && signal_suppress != should_suppress.value())
continue;
- if (should_stop && signal_stop != should_stop.getValue())
+ if (should_stop && signal_stop != should_stop.value())
continue;
- if (should_notify && signal_notify != should_notify.getValue())
+ if (should_notify && signal_notify != should_notify.value())
continue;
result.push_back(signo);