diff options
author | Brad King <brad.king@kitware.com> | 2001-05-01 21:35:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-05-01 21:35:23 (GMT) |
commit | 45e9d19c6c456024f6cef663e29447bfae148fff (patch) | |
tree | 5f334ca8803ff258fcfbaf01ea83fde000b19165 /Source/cmCableInstantiateClassCommand.cxx | |
parent | f7d33c41cf089b857893edcd31fae7fb69859c6e (diff) | |
download | CMake-45e9d19c6c456024f6cef663e29447bfae148fff.zip CMake-45e9d19c6c456024f6cef663e29447bfae148fff.tar.gz CMake-45e9d19c6c456024f6cef663e29447bfae148fff.tar.bz2 |
ENH: Changed WriteConfiguration back to const because it doesn't need to report errors anymore.
Diffstat (limited to 'Source/cmCableInstantiateClassCommand.cxx')
-rw-r--r-- | Source/cmCableInstantiateClassCommand.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmCableInstantiateClassCommand.cxx b/Source/cmCableInstantiateClassCommand.cxx index 179ea8e..f6db806 100644 --- a/Source/cmCableInstantiateClassCommand.cxx +++ b/Source/cmCableInstantiateClassCommand.cxx @@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Write the CABLE configuration code to define this InstantiationSet. * This includes the "class" keyword to do class template instantiations. */ -bool cmCableInstantiateClassCommand::WriteConfiguration() +void cmCableInstantiateClassCommand::WriteConfiguration() const { std::ostream& os = m_CableData->GetOutputStream(); cmCableData::Indentation indent = m_CableData->GetIndentation(); @@ -71,6 +71,4 @@ bool cmCableInstantiateClassCommand::WriteConfiguration() os << "</Element>" << std::endl; } os << indent << "</InstantiationSet>" << std::endl; - - return true; } |