Sfoglia il codice sorgente

STYLE: fix line length

Ken Martin 19 anni fa
parent
commit
01c25dd378
2 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  1. 2 1
      Source/cmGlobalGenerator.cxx
  2. 3 1
      Source/cmGlobalMSYSMakefileGenerator.h

+ 2 - 1
Source/cmGlobalGenerator.cxx

@@ -1410,7 +1410,8 @@ void cmGlobalGenerator::CreateDefaultGlobalTargets(cmTargets* targets)
   const char* rebuildCacheTargetName = this->GetRebuildCacheTargetName();
   if ( rebuildCacheTargetName )
     {
-    cpackCommandLines.erase(cpackCommandLines.begin(), cpackCommandLines.end());
+    cpackCommandLines.erase(cpackCommandLines.begin(), 
+                            cpackCommandLines.end());
     singleLine.erase(singleLine.begin(), singleLine.end());
     depends.erase(depends.begin(), depends.end());
     singleLine.push_back(cmakeCommand);

+ 3 - 1
Source/cmGlobalMSYSMakefileGenerator.h

@@ -28,7 +28,9 @@ class cmGlobalMSYSMakefileGenerator : public cmGlobalUnixMakefileGenerator3
 {
 public:
   cmGlobalMSYSMakefileGenerator();
-  static cmGlobalGenerator* New() { return new cmGlobalMSYSMakefileGenerator; }
+  static cmGlobalGenerator* New() { 
+    return new cmGlobalMSYSMakefileGenerator; }
+
   ///! Get the name for the generator.
   virtual const char* GetName() const {
     return cmGlobalMSYSMakefileGenerator::GetActualName();}