diff options
author | Brad King <brad.king@kitware.com> | 2010-09-10 14:42:09 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-09-10 14:42:09 -0400 |
commit | 9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c (patch) | |
tree | aae8d7e8ec4e5d0d379766478ba4ddf15467f7ff /Source/cmELF.cxx | |
parent | 86025d3a38fb2dd6409e713b4633bf782975d5c3 (diff) | |
download | cmake-9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c.tar.gz |
Fix line-too-long style errors
Diffstat (limited to 'Source/cmELF.cxx')
-rw-r--r-- | Source/cmELF.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx index c19872748a..1158fc0c01 100644 --- a/Source/cmELF.cxx +++ b/Source/cmELF.cxx @@ -687,7 +687,8 @@ cmELFInternalImpl<Types>::GetDynamicSectionString(int tag) // The value has been read successfully. Report it. se.Position = static_cast<unsigned long>(strtab.sh_offset + first); se.Size = last - first; - se.IndexInSection = static_cast<int>(di - this->DynamicSectionEntries.begin()); + se.IndexInSection = + static_cast<int>(di - this->DynamicSectionEntries.begin()); return &se; } } |