Add missing braces around statements in header files
This commit is contained in:
parent
a16bf141bc
commit
757b0ff5dd
|
@ -51,8 +51,9 @@ public:
|
|||
virtual cmGlobalGenerator* CreateGlobalGenerator(const std::string& name,
|
||||
cmake* cm) const
|
||||
{
|
||||
if (name != T::GetActualName())
|
||||
if (name != T::GetActualName()) {
|
||||
return 0;
|
||||
}
|
||||
return new T(cm);
|
||||
}
|
||||
|
||||
|
|
|
@ -643,8 +643,9 @@ public:
|
|||
|
||||
void AddInstallGenerator(cmInstallGenerator* g)
|
||||
{
|
||||
if (g)
|
||||
if (g) {
|
||||
this->InstallGenerators.push_back(g);
|
||||
}
|
||||
}
|
||||
std::vector<cmInstallGenerator*>& GetInstallGenerators()
|
||||
{
|
||||
|
@ -653,8 +654,9 @@ public:
|
|||
|
||||
void AddTestGenerator(cmTestGenerator* g)
|
||||
{
|
||||
if (g)
|
||||
if (g) {
|
||||
this->TestGenerators.push_back(g);
|
||||
}
|
||||
}
|
||||
const std::vector<cmTestGenerator*>& GetTestGenerators() const
|
||||
{
|
||||
|
|
|
@ -75,17 +75,21 @@ struct cmDocumentationEntry
|
|||
cmDocumentationEntry() {}
|
||||
cmDocumentationEntry(const char* doc[2])
|
||||
{
|
||||
if (doc[0])
|
||||
if (doc[0]) {
|
||||
this->Name = doc[0];
|
||||
if (doc[1])
|
||||
}
|
||||
if (doc[1]) {
|
||||
this->Brief = doc[1];
|
||||
}
|
||||
}
|
||||
cmDocumentationEntry(const char* n, const char* b)
|
||||
{
|
||||
if (n)
|
||||
if (n) {
|
||||
this->Name = n;
|
||||
if (b)
|
||||
}
|
||||
if (b) {
|
||||
this->Brief = b;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue