Browse Source

STYLE: Fix line-too-long.

Brad King 18 years ago
parent
commit
254ae5c62e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/cmIncludeDirectoryCommand.cxx

+ 2 - 1
Source/cmIncludeDirectoryCommand.cxx

@@ -98,7 +98,8 @@ void cmIncludeDirectoryCommand::AddDirectory(const char *i,
       }
     if (ret.size()-pos-1)
       {
-      this->AddDirectory(ret.substr(pos+1,ret.size()-pos-1).c_str(), before, system);
+      this->AddDirectory(ret.substr(pos+1,ret.size()-pos-1).c_str(),
+                         before, system);
       }
     return;
     }