From f7cf4cbbbd44c0462fd0781afa04af7a9e10ca5f Mon Sep 17 00:00:00 2001 From: David Rose Date: Wed, 1 May 2002 23:01:13 +0000 Subject: [PATCH] clean up spacing --- ppremake/check_include.cxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ppremake/check_include.cxx b/ppremake/check_include.cxx index e68aeeb361..40718c83ea 100644 --- a/ppremake/check_include.cxx +++ b/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(); }