Browse Source

Ninja: no 16:9 screens for the cmake team ;)

Peter Kuemmel 13 years ago
parent
commit
73426ac774
1 changed files with 6 additions and 3 deletions
  1. 6 3
      Source/cmNinjaNormalTargetGenerator.cxx

+ 6 - 3
Source/cmNinjaNormalTargetGenerator.cxx

@@ -55,18 +55,21 @@ cmNinjaNormalTargetGenerator::~cmNinjaNormalTargetGenerator()
 {
 }
 
-void cmNinjaNormalTargetGenerator::EnsureDirectoryExists(const std::string& dir)
+void
+cmNinjaNormalTargetGenerator
+::EnsureDirectoryExists(const std::string& dir)
 {
   cmSystemTools::MakeDirectory(dir.c_str());
 }
 
-void cmNinjaNormalTargetGenerator::EnsureParentDirectoryExists(const std::string& path)
+void
+cmNinjaNormalTargetGenerator
+::EnsureParentDirectoryExists(const std::string& path)
 {
   EnsureDirectoryExists(cmSystemTools::GetParentDirectory(path.c_str()));
 }
 
 
-
 void cmNinjaNormalTargetGenerator::Generate()
 {
   if (!this->TargetLinkLanguage) {