diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 13:54:57 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 13:54:57 -0500 |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmXCodeObject.cxx | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | cmake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r-- | Source/cmXCodeObject.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index 345bc57623..4474b72227 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -8,7 +8,8 @@ const char* cmXCodeObject::PBXTypeNames[] = { "PBXTargetDependency", "PBXShellScriptBuildPhase", "PBXResourcesBuildPhase", "PBXApplicationReference", "PBXExecutableFileReference", "PBXLibraryReference", "PBXToolTarget", - "PBXLibraryTarget", "PBXAggregateTarget", "XCBuildConfiguration", "XCConfigurationList", + "PBXLibraryTarget", "PBXAggregateTarget", "XCBuildConfiguration", + "XCConfigurationList", "None" }; @@ -118,7 +119,8 @@ void cmXCodeObject::Print(std::ostream& out) { std::map<cmStdString, cmXCodeObject*>::iterator j; out << i->first << " = {" << separator; - for(j = object->m_ObjectAttributes.begin(); j != object->m_ObjectAttributes.end(); ++j) + for(j = object->m_ObjectAttributes.begin(); j != + object->m_ObjectAttributes.end(); ++j) { cmXCodeObject::Indent(4 *indentFactor, out); out << j->first << " = " << j->second->m_String << ";"; |