Remove extra semicolons from C++ code.

Clang based tools running over the code complain about these,
but clang has a fixit for removing them.
This commit is contained in:
Stephen Kelly 2014-04-03 21:35:22 +02:00
parent 4bef02e7aa
commit 6c19024570
20 changed files with 41 additions and 41 deletions

View File

@ -134,7 +134,7 @@ public:
/*
* Is the tomorrow tag set?
*/
bool GetTomorrowTag() { return this->TomorrowTag; };
bool GetTomorrowTag() { return this->TomorrowTag; }
/**
* Try to run tests of the project
@ -167,7 +167,7 @@ public:
* Set the cmake test mode (experimental, nightly, continuous).
*/
void SetTestModel(int mode);
int GetTestModel() { return this->TestModel; };
int GetTestModel() { return this->TestModel; }
std::string GetTestModelString();
static int GetTestModelFromString(const char* str);
@ -392,7 +392,7 @@ public:
int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf);
std::vector<std::string> &GetInitialCommandLineArguments()
{ return this->InitialCommandLineArguments; };
{ return this->InitialCommandLineArguments; }
//! Set the track to submit to
void SetSpecificTrack(const char* track);

View File

@ -81,7 +81,7 @@ public:
* not implement this method. At this point, reading and
* writing to the cache can be done.
*/
virtual void FinalPass() {};
virtual void FinalPass() {}
/**
* Does this command have a final pass? Query after InitialPass.

View File

@ -32,7 +32,7 @@ public:
cmDepends(cmLocalGenerator* lg=0, const char* targetDir="");
/** at what level will the compile be done from */
void SetCompileDirectory(const char *dir) {this->CompileDirectory = dir;};
void SetCompileDirectory(const char *dir) {this->CompileDirectory = dir;}
/** Set the local generator for the directory in which we are
scanning dependencies. This is not a full local generator; it

View File

@ -36,8 +36,8 @@ public:
static void FlushCache();
protected:
cmDynamicLoader() {};
~cmDynamicLoader() {};
cmDynamicLoader() {}
~cmDynamicLoader() {}
private:
cmDynamicLoader(const cmDynamicLoader&); // Not implemented.

View File

@ -24,7 +24,7 @@ class cmExecutionStatus : public cmObject
public:
cmTypeMacro(cmExecutionStatus, cmObject);
cmExecutionStatus() { this->Clear();};
cmExecutionStatus() { this->Clear();}
virtual void SetReturnInvoked(bool val)
{ this->ReturnInvoked = val; }

View File

@ -20,7 +20,7 @@ public:
cmFunctionHelperCommand() {}
///! clean up any memory allocated by the function
~cmFunctionHelperCommand() {};
~cmFunctionHelperCommand() {}
/**
* This is used to avoid including this command
@ -59,7 +59,7 @@ public:
cmExecutionStatus &);
virtual bool InitialPass(std::vector<std::string> const&,
cmExecutionStatus &) { return false; };
cmExecutionStatus &) { return false; }
/**
* The name of the command as specified in CMakeList.txt.

View File

@ -51,7 +51,7 @@ public:
virtual cmLocalGenerator *CreateLocalGenerator();
///! Get the name for this generator
virtual std::string GetName() const { return "Generic"; };
virtual std::string GetName() const { return "Generic"; }
/** Check whether the given name matches the current generator. */
virtual bool MatchesGeneratorName(const std::string& name) const

View File

@ -58,7 +58,7 @@ public:
* the CMakeLists.txt file.
*/
virtual bool InitialPass(std::vector<std::string> const&,
cmExecutionStatus &) { return false;};
cmExecutionStatus &) { return false;}
/**
* The name of the command as specified in CMakeList.txt.

View File

@ -76,17 +76,17 @@ public:
///! Get the makefile for this generator
cmMakefile *GetMakefile() {
return this->Makefile; };
return this->Makefile; }
///! Get the makefile for this generator, const version
const cmMakefile *GetMakefile() const {
return this->Makefile; };
return this->Makefile; }
///! Get the GlobalGenerator this is associated with
cmGlobalGenerator *GetGlobalGenerator() {
return this->GlobalGenerator; };
return this->GlobalGenerator; }
const cmGlobalGenerator *GetGlobalGenerator() const {
return this->GlobalGenerator; };
return this->GlobalGenerator; }
///! Set the Global Generator, done on creation by the GlobalGenerator
void SetGlobalGenerator(cmGlobalGenerator *gg);
@ -135,7 +135,7 @@ public:
///! set/get the children
void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }
std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; };
std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; }
void AddArchitectureFlags(std::string& flags, cmGeneratorTarget* target,

View File

@ -20,7 +20,7 @@ public:
cmMacroHelperCommand() {}
///! clean up any memory allocated by the macro
~cmMacroHelperCommand() {};
~cmMacroHelperCommand() {}
/**
* This is used to avoid including this command
@ -60,7 +60,7 @@ public:
cmExecutionStatus &);
virtual bool InitialPass(std::vector<std::string> const&,
cmExecutionStatus &) { return false; };
cmExecutionStatus &) { return false; }
/**
* The name of the command as specified in CMakeList.txt.

View File

@ -815,7 +815,7 @@ public:
const std::string& config);
// Get the properties
cmPropertyMap &GetProperties() { return this->Properties; };
cmPropertyMap &GetProperties() { return this->Properties; }
///! Initialize a makefile from its parent
void InitializeFromParent();

View File

@ -31,7 +31,7 @@ public:
const char *GetValue() const;
// construct with the value not set
cmProperty() { this->ValueHasBeenSet = false; };
cmProperty() { this->ValueHasBeenSet = false; }
protected:
std::string Name;

View File

@ -33,22 +33,22 @@ public:
bool chained);
/// Default constructor
cmPropertyDefinition() { this->Chained = false; };
cmPropertyDefinition() { this->Chained = false; }
/// Is the property chained?
bool IsChained() const { return this->Chained; };
bool IsChained() const { return this->Chained; }
/// Get the scope
cmProperty::ScopeType GetScope() const {
return this->Scope; };
return this->Scope; }
/// Get the documentation (short version)
const std::string &GetShortDescription() const {
return this->ShortDescription; };
return this->ShortDescription; }
/// Get the documentation (full version)
const std::string &GetFullDescription() const {
return this->FullDescription; };
return this->FullDescription; }
protected:
std::string Name;

View File

@ -31,9 +31,9 @@ public:
cmProperty::ScopeType scope,
bool &chain) const;
void SetCMakeInstance(cmake *cm) { this->CMakeInstance = cm; };
void SetCMakeInstance(cmake *cm) { this->CMakeInstance = cm; }
cmPropertyMap() { this->CMakeInstance = 0;};
cmPropertyMap() { this->CMakeInstance = 0;}
private:
cmake *CMakeInstance;

View File

@ -89,7 +89,7 @@ public:
void AddDepend(const char* d) { this->Depends.push_back(d); }
// Get the properties
cmPropertyMap &GetProperties() { return this->Properties; };
cmPropertyMap &GetProperties() { return this->Properties; }
/**
* Check whether the given source file location could refer to this

View File

@ -324,12 +324,12 @@ struct cmDocumentationEntry
{
std::string Name;
std::string Brief;
cmDocumentationEntry(){};
cmDocumentationEntry(){}
cmDocumentationEntry(const char *doc[2])
{ if (doc[0]) this->Name = doc[0];
if (doc[1]) this->Brief = doc[1];};
if (doc[1]) this->Brief = doc[1];}
cmDocumentationEntry(const char *n, const char *b)
{ if (n) this->Name = n; if (b) this->Brief = b; };
{ if (n) this->Name = n; if (b) this->Brief = b; }
};
/** Data structure to represent a single command line. */

View File

@ -83,7 +83,7 @@ protected:
RegexReplacement(const char* s): number(-1), value(s) {}
RegexReplacement(const std::string& s): number(-1), value(s) {}
RegexReplacement(int n): number(n), value() {}
RegexReplacement() {};
RegexReplacement() {}
int number;
std::string value;
};

View File

@ -106,7 +106,7 @@ public:
///! Set the cmMakefile that owns this target
void SetMakefile(cmMakefile *mf);
cmMakefile *GetMakefile() const { return this->Makefile;};
cmMakefile *GetMakefile() const { return this->Makefile;}
#define DECLARE_TARGET_POLICY(POLICY) \
cmPolicies::PolicyStatus GetPolicyStatus ## POLICY () const \
@ -448,7 +448,7 @@ public:
cmTarget const* head = 0) const;
// Get the properties
cmPropertyMap &GetProperties() const { return this->Properties; };
cmPropertyMap &GetProperties() const { return this->Properties; }
bool GetMappedConfig(std::string const& desired_config,
const char** loc,

View File

@ -51,10 +51,10 @@ public:
const char* value,bool asString=false);
const char *GetProperty(const std::string& prop) const;
bool GetPropertyAsBool(const std::string& prop) const;
cmPropertyMap &GetProperties() { return this->Properties; };
cmPropertyMap &GetProperties() { return this->Properties; }
/** Get the cmMakefile instance that owns this test. */
cmMakefile *GetMakefile() { return this->Makefile;};
cmMakefile *GetMakefile() { return this->Makefile;}
/** Get the backtrace of the command that created this test. */
cmListFileBacktrace const& GetBacktrace() const;

View File

@ -98,9 +98,9 @@ class cmake
/// Destructor
~cmake();
static const char *GetCMakeFilesDirectory() {return "/CMakeFiles";};
static const char *GetCMakeFilesDirectory() {return "/CMakeFiles";}
static const char *GetCMakeFilesDirectoryPostSlash() {
return "CMakeFiles/";};
return "CMakeFiles/";}
//@{
/**
@ -261,7 +261,7 @@ class cmake
void UpdateProgress(const char *msg, float prog);
///! get the cmake policies instance
cmPolicies *GetPolicies() {return this->Policies;} ;
cmPolicies *GetPolicies() {return this->Policies;}
///! Get the variable watch object
cmVariableWatch* GetVariableWatch() { return this->VariableWatch; }
@ -278,7 +278,7 @@ class cmake
bool GetPropertyAsBool(const std::string& prop);
// Get the properties
cmPropertyMap &GetProperties() { return this->Properties; };
cmPropertyMap &GetProperties() { return this->Properties; }
///! Do all the checks before running configure
int DoPreConfigureChecks();