summaryrefslogtreecommitdiff
path: root/Source/cmXCodeObject.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 14:36:39 -0400
committerKen Martin <ken.martin@kitware.com>2006-05-12 14:36:39 -0400
commitbf5ed9b27b5ce80348de2ec283c7c13893a00360 (patch)
tree3b90c5eead00de46c7c140f83c374886c3f3a34e /Source/cmXCodeObject.h
parentcac30b5ff8f7034b5290700a4dee28c84e001ac9 (diff)
downloadcmake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.tar.gz
STYLE: fix line length
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r--Source/cmXCodeObject.h25
1 files changed, 14 insertions, 11 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h
index 04d1f93fe9..9f000d16f7 100644
--- a/Source/cmXCodeObject.h
+++ b/Source/cmXCodeObject.h
@@ -49,22 +49,25 @@ public:
{
this->List.push_back(value);
}
- bool HasObject(cmXCodeObject* o)
- {
- return !(std::find(this->List.begin(), this->List.end(), o) == this->List.end());
- }
+ bool HasObject(cmXCodeObject* o)
+ {
+ return !(std::find(this->List.begin(), this->List.end(), o)
+ == this->List.end());
+ }
void AddUniqueObject(cmXCodeObject* value)
- {
- if(std::find(this->List.begin(), this->List.end(), value) == this->List.end())
- {
- this->List.push_back(value);
- }
- }
+ {
+ if(std::find(this->List.begin(), this->List.end(), value)
+ == this->List.end())
+ {
+ this->List.push_back(value);
+ }
+ }
static void Indent(int level, std::ostream& out);
void Print(std::ostream& out);
virtual void PrintComment(std::ostream&) {};
- static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
+ static void PrintList(std::vector<cmXCodeObject*> const&,
+ std::ostream& out);
const char* GetId()
{
return this->Id.c_str();