Browse Source

clean up spacing

David Rose 23 years ago
parent
commit
f7cf4cbbbd
1 changed files with 5 additions and 4 deletions
  1. 5 4
      ppremake/check_include.cxx

+ 5 - 4
ppremake/check_include.cxx

@@ -44,10 +44,11 @@ check_include(const string &line) {
   // note: ppremake cant expand cpp #define vars used as include targets yet
 
   if (p >= line.length() || (line[p] != '"' && line[p] != '<')) {
-    // it it starts with a capital, assume its a #define var used as include tgt,
-	// and dont print a warning
-	if(!((line[p]>='A')&&(line[p]<='Z')))
-		cerr << "Ignoring invalid #include directive: " << line << "\n";
+    // if it starts with a capital, assume its a #define var used as
+    // include tgt, and dont print a warning
+    if(!((line[p]>='A')&&(line[p]<='Z'))) {
+      cerr << "Ignoring invalid #include directive: " << line << "\n";
+    }
     return string();
   }