This is an archive of the discontinued LLVM Phabricator instance.

[lldb] Remove unused bool return type of ThreadPlan::WillStop (NFC)
Needs ReviewPublic

Authored by kastiglione on Feb 13 2021, 2:22 PM.

Details

Reviewers
jingham
Summary

The calls to ThreadPlan::WillStop do not use the return value. This changes WillStop
to a void return type, and since most subclasses don't implement this event, the base
class is given an empty implementation, instead of being pure virtual. Do-nothing
implementations are removed.

Diff Detail

Event Timeline

kastiglione requested review of this revision.Feb 13 2021, 2:22 PM
kastiglione created this revision.
Herald added a project: Restricted Project. · View Herald TranscriptFeb 13 2021, 2:22 PM
kastiglione edited the summary of this revision. (Show Details)Feb 13 2021, 2:24 PM