forked from OSchip/llvm-project
parent
a20890b6bc
commit
fccc829ce7
|
@ -86,9 +86,9 @@ class BroadcasterManager
|
|||
{
|
||||
public:
|
||||
BroadcasterManager ();
|
||||
|
||||
~BroadcasterManager () {};
|
||||
|
||||
|
||||
~BroadcasterManager () {}
|
||||
|
||||
uint32_t
|
||||
RegisterListenerForEvents (Listener &listener, BroadcastEventSpec event_spec);
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ public:
|
|||
uint32_t data_offset) = 0;
|
||||
|
||||
virtual void
|
||||
SetDescription (const char *) {}; // May be overridden in sub-classes that have descriptions.
|
||||
SetDescription (const char *) {} // May be overridden in sub-classes that have descriptions.
|
||||
|
||||
lldb::OptionValueSP
|
||||
ReadArray (FILE *in_file, Stream *out_stream, OptionValue::Type data_type);
|
||||
|
|
|
@ -281,7 +281,7 @@ class SearchFilterForNonModuleSpecificSearches :
|
|||
public SearchFilter
|
||||
{
|
||||
public:
|
||||
SearchFilterForNonModuleSpecificSearches (const lldb::TargetSP &targetSP) : SearchFilter(targetSP) {};
|
||||
SearchFilterForNonModuleSpecificSearches (const lldb::TargetSP &targetSP) : SearchFilter(targetSP) {}
|
||||
~SearchFilterForNonModuleSpecificSearches () {}
|
||||
|
||||
virtual bool
|
||||
|
|
|
@ -88,8 +88,8 @@ public:
|
|||
class SourceFileCache
|
||||
{
|
||||
public:
|
||||
SourceFileCache () {};
|
||||
~SourceFileCache() {};
|
||||
SourceFileCache () {}
|
||||
~SourceFileCache() {}
|
||||
|
||||
void AddSourceFile (const FileSP &file_sp);
|
||||
FileSP FindSourceFile (const FileSpec &file_spec) const;
|
||||
|
|
|
@ -99,7 +99,7 @@ protected:
|
|||
bool catch_bp,
|
||||
bool throw_bp);
|
||||
|
||||
virtual ~ExceptionBreakpointResolver() {};
|
||||
virtual ~ExceptionBreakpointResolver() {}
|
||||
|
||||
virtual Searcher::CallbackReturn
|
||||
SearchCallback (SearchFilter &filter,
|
||||
|
@ -114,7 +114,7 @@ protected:
|
|||
GetDescription (Stream *s);
|
||||
|
||||
virtual void
|
||||
Dump (Stream *s) const {};
|
||||
Dump (Stream *s) const {}
|
||||
|
||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const BreakpointResolverName *) { return true; }
|
||||
|
|
|
@ -3239,7 +3239,7 @@ protected:
|
|||
}
|
||||
|
||||
virtual EventActionResult PerformAction (lldb::EventSP &event_sp) = 0;
|
||||
virtual void HandleBeingUnshipped () {};
|
||||
virtual void HandleBeingUnshipped () {}
|
||||
virtual EventActionResult HandleBeingInterrupted () = 0;
|
||||
virtual const char *GetExitString() = 0;
|
||||
protected:
|
||||
|
|
Loading…
Reference in New Issue