From 9b89d84210527292f411590187eb6d7aa1e4eb20 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 26 Aug 2006 10:29:11 -0400 Subject: [PATCH] STYLE: Fixed line-too-long. --- Source/cmIfCommand.cxx | 8 +++++--- Source/cmListCommand.cxx | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index c9a6c08cb..3297022ff 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -243,11 +243,13 @@ bool cmIfCommand::IsTrue(const std::vector &args, reducible = 1; } // is file A newer than file B - if (*arg == "FILE_IS_NEWER" && argP1 != newArgs.end() && argP2 != newArgs.end()) + if (*arg == "FILE_IS_NEWER" && + argP1 != newArgs.end() && argP2 != newArgs.end()) { int fileIsNewer=0; - bool success=cmSystemTools::FileTimeCompare((argP1)->c_str(), (argP2)->c_str(), - &fileIsNewer); + bool success=cmSystemTools::FileTimeCompare((argP1)->c_str(), + (argP2)->c_str(), + &fileIsNewer); if(success==false || fileIsNewer==1 || fileIsNewer==0) { *arg = "1"; diff --git a/Source/cmListCommand.cxx b/Source/cmListCommand.cxx index 017b703f2..b546d20fb 100644 --- a/Source/cmListCommand.cxx +++ b/Source/cmListCommand.cxx @@ -266,7 +266,7 @@ bool cmListCommand { if(args.size() < 3) { - this->SetError("sub-command REMOVE_ITEM requires at least two arguments."); + this->SetError("sub-command REMOVE_ITEM requires two or more arguments."); return false; }