Sfoglia il codice sorgente

ERR: Blank line regular expression updated to allow whitespace on the line.

Brad King 24 anni fa
parent
commit
e318d87aff
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Source/cmSystemTools.cxx

+ 1 - 1
Source/cmSystemTools.cxx

@@ -208,7 +208,7 @@ bool cmSystemTools::ParseFunction(std::ifstream& fin,
   
   if(fin.getline(inbuffer, BUFFER_SIZE ) )
     {
-    cmRegularExpression blankLine("^$");
+    cmRegularExpression blankLine("^[ \t]*$");
     cmRegularExpression comment("^[ \t]*#.*$");
     cmRegularExpression oneLiner("^[ \t]*([A-Za-z_0-9]*)[ \t]*\\((.*)\\)[ \t]*$");
     cmRegularExpression multiLine("^[ \t]*([A-Za-z_0-9]*)[ \t]*\\((.*)$");