[cmake-commits] king committed cmDependsC.cxx 1.31 1.32

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Feb 7 09:23:43 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv19904

Modified Files:
	cmDependsC.cxx 
Log Message:
STYLE: Fixed line-too-long.


Index: cmDependsC.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDependsC.cxx,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- cmDependsC.cxx	5 Feb 2007 14:48:38 -0000	1.31
+++ cmDependsC.cxx	7 Feb 2007 14:23:41 -0000	1.32
@@ -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 @@
   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 @@
         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)



More information about the Cmake-commits mailing list