summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-10 15:38:23 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-05-10 15:38:23 (GMT)
commit362f81981e0759fe310eea5def1644d4304700e8 (patch)
tree2c034e70811715bd458d463602274ea92cebbe91
parent8c39efe8546668c7828a53be4641f6fa13579e2f (diff)
downloadCMake-362f81981e0759fe310eea5def1644d4304700e8.zip
CMake-362f81981e0759fe310eea5def1644d4304700e8.tar.gz
CMake-362f81981e0759fe310eea5def1644d4304700e8.tar.bz2
STYLE: fix line length
Alex
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx6
-rw-r--r--Source/cmGlobalXCodeGenerator.h2
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx3
-rw-r--r--Source/cmTarget.cxx6
4 files changed, 11 insertions, 6 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 9b96769..ed18664 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -959,7 +959,8 @@ void cmGlobalXCodeGenerator
std::vector<cmCustomCommand>
const & commands,
const char* configName,
- const std::map<cmStdString, cmStdString>& multipleOutputPairs
+ const std::map<cmStdString,
+ cmStdString>& multipleOutputPairs
)
{
std::string makefileName=makefileBasename;
@@ -1487,7 +1488,8 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
if(install_name_dir.find(".framework") != install_name_dir.npos)
{
install_name_dir = install_name_dir + "/..";
- install_name_dir = cmSystemTools::CollapseFullPath(install_name_dir.c_str());
+ install_name_dir =
+ cmSystemTools::CollapseFullPath(install_name_dir.c_str());
std::cerr << "new install name " << install_name_dir << "\n";
}
}
diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h
index 4a08217..b484ea3 100644
--- a/Source/cmGlobalXCodeGenerator.h
+++ b/Source/cmGlobalXCodeGenerator.h
@@ -109,7 +109,7 @@ private:
void CreateCustomRulesMakefile(const char* makefileBasename,
cmTarget& target,
- std::vector<cmCustomCommand> const & commands,
+ std::vector<cmCustomCommand> const & commands,
const char* configName,
const std::map<cmStdString, cmStdString>&
multipleOutputPairs
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 53d24a9..ec38421 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -1283,7 +1283,8 @@ WriteCustomRule(std::ostream& fout,
{
// Write a rule for the output generated by this command.
const char* sep = "";
- for(std::vector<std::string>::const_iterator o = command.GetOutputs().begin();
+ for(std::vector<std::string>::const_iterator o =
+ command.GetOutputs().begin();
o != command.GetOutputs().end();
++o)
{
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 677d96f..eb1768e 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -416,7 +416,7 @@ cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands)
cli != commands.end();
++cli )
{
- for ( cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin();
+ for(cmCustomCommandLines::const_iterator cit=cli->GetCommandLines().begin();
cit!=cli->GetCommandLines().end();
++cit )
{
@@ -584,7 +584,9 @@ void cmTarget::TraceVSDependencies(std::string projFile,
outsf->GetCustomCommand()->AppendDepends(automaticTargetDepends);
// add its dependencies to the list to check
- for (unsigned int i = 0; i < outsf->GetCustomCommand()->GetDepends().size(); ++i)
+ for (unsigned int i = 0;
+ i < outsf->GetCustomCommand()->GetDepends().size();
+ ++i)
{
const std::string& fullName
= outsf->GetCustomCommand()->GetDepends()[i];