Remove trailing semicolons.

llvm-svn: 157240
This commit is contained in:
Filipe Cabecinhas 2012-05-22 08:36:18 +00:00
parent a20890b6bc
commit fccc829ce7
6 changed files with 10 additions and 10 deletions

View File

@ -86,9 +86,9 @@ class BroadcasterManager
{
public:
BroadcasterManager ();
~BroadcasterManager () {};
~BroadcasterManager () {}
uint32_t
RegisterListenerForEvents (Listener &listener, BroadcastEventSpec event_spec);

View File

@ -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);

View File

@ -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

View File

@ -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;

View File

@ -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; }

View File

@ -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: