diff options
author | Brad King <brad.king@kitware.com> | 2006-09-27 16:55:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-09-27 16:55:58 (GMT) |
commit | 61d3b2f1fbc947bd81f4e6552a5faf85fe576338 (patch) | |
tree | ca0e107563f319f2f8a1476dda5311a475ebba7e | |
parent | e10f739571589c392ac6d4f8bafcd909fdce1add (diff) | |
download | CMake-61d3b2f1fbc947bd81f4e6552a5faf85fe576338.zip CMake-61d3b2f1fbc947bd81f4e6552a5faf85fe576338.tar.gz CMake-61d3b2f1fbc947bd81f4e6552a5faf85fe576338.tar.bz2 |
STYLE: Fixed line-too-long.
-rw-r--r-- | Source/cmDependsC.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index 18b36b6..ff0545f 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -33,7 +33,8 @@ cmDependsC::cmDependsC(std::vector<std::string> const& includes, const char* scanRegex, const char* complainRegex, const cmStdString& cacheFileName): IncludePath(&includes), - IncludeRegexLine("^[ \t]*#[ \t]*(include|import)[ \t]*[<\"]([^\">]+)([\">])"), + IncludeRegexLine( + "^[ \t]*#[ \t]*(include|import)[ \t]*[<\"]([^\">]+)([\">])"), IncludeRegexScan(scanRegex), IncludeRegexComplain(complainRegex), CacheFileName(cacheFileName) |