diff options
author | Brad King <brad.king@kitware.com> | 2007-02-07 14:23:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-02-07 14:23:41 (GMT) |
commit | 96665eb79d78c68e6c94f7d8824d28106fea6547 (patch) | |
tree | c9d2feadcec6aa86341e557ec668ea9567a1cce1 /Source/cmDependsC.cxx | |
parent | fb21ee5ce765e4bb939b6fb28e13a2faf6ee5cfc (diff) | |
download | CMake-96665eb79d78c68e6c94f7d8824d28106fea6547.zip CMake-96665eb79d78c68e6c94f7d8824d28106fea6547.tar.gz CMake-96665eb79d78c68e6c94f7d8824d28106fea6547.tar.bz2 |
STYLE: Fixed line-too-long.
Diffstat (limited to 'Source/cmDependsC.cxx')
-rw-r--r-- | Source/cmDependsC.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index 566dc81..16faf37 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -23,7 +23,8 @@ #include <ctype.h> // isspace -#define INCLUDE_REGEX_LINE "^[ \t]*#[ \t]*(include|import)[ \t]*[<\"]([^\">]+)([\">])" +#define INCLUDE_REGEX_LINE \ + "^[ \t]*#[ \t]*(include|import)[ \t]*[<\"]([^\">]+)([\">])" #define INCLUDE_REGEX_LINE_MARKER "#IncludeRegexLine: " #define INCLUDE_REGEX_SCAN_MARKER "#IncludeRegexScan: " @@ -45,7 +46,8 @@ cmDependsC::cmDependsC(std::vector<std::string> const& includes, IncludeRegexComplain(complainRegex), IncludeRegexLineString(INCLUDE_REGEX_LINE_MARKER INCLUDE_REGEX_LINE), IncludeRegexScanString(std::string(INCLUDE_REGEX_SCAN_MARKER)+scanRegex), - IncludeRegexComplainString(std::string(INCLUDE_REGEX_COMPLAIN_MARKER)+complainRegex), + IncludeRegexComplainString( + std::string(INCLUDE_REGEX_COMPLAIN_MARKER)+complainRegex), CacheFileName(cacheFileName) { this->ReadCacheFile(); @@ -290,7 +292,8 @@ void cmDependsC::ReadCacheFile() cacheEntry=new cmIncludeLines; this->FileCache[line]=cacheEntry; } - // file doesn't exist, check that the regular expressions haven't changed + // file doesn't exist, check that the regular expressions + // haven't changed else if (res==false) { if (line.find(INCLUDE_REGEX_LINE_MARKER) == 0) |