diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:36:39 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:36:39 (GMT) |
commit | bf5ed9b27b5ce80348de2ec283c7c13893a00360 (patch) | |
tree | 3b90c5eead00de46c7c140f83c374886c3f3a34e /Source/cmXCodeObject.h | |
parent | cac30b5ff8f7034b5290700a4dee28c84e001ac9 (diff) | |
download | CMake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.zip CMake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.tar.gz CMake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r-- | Source/cmXCodeObject.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h index 04d1f93..9f000d1 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(); |