summaryrefslogtreecommitdiffstats
path: root/Source/cmCableSourceFilesCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-05-01 21:35:23 (GMT)
committerBrad King <brad.king@kitware.com>2001-05-01 21:35:23 (GMT)
commit45e9d19c6c456024f6cef663e29447bfae148fff (patch)
tree5f334ca8803ff258fcfbaf01ea83fde000b19165 /Source/cmCableSourceFilesCommand.cxx
parentf7d33c41cf089b857893edcd31fae7fb69859c6e (diff)
downloadCMake-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/cmCableSourceFilesCommand.cxx')
-rw-r--r--Source/cmCableSourceFilesCommand.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmCableSourceFilesCommand.cxx b/Source/cmCableSourceFilesCommand.cxx
index 4daff3c..c4024f8 100644
--- a/Source/cmCableSourceFilesCommand.cxx
+++ b/Source/cmCableSourceFilesCommand.cxx
@@ -70,7 +70,7 @@ void cmCableSourceFilesCommand::FinalPass()
* Write the CABLE configuration code to indicate header dependencies for
* a package.
*/
-bool cmCableSourceFilesCommand::WriteConfiguration()
+void cmCableSourceFilesCommand::WriteConfiguration() const
{
std::ostream& os = m_CableData->GetOutputStream();
cmCableData::Indentation indent = m_CableData->GetIndentation();
@@ -102,8 +102,6 @@ bool cmCableSourceFilesCommand::WriteConfiguration()
}
}
os << indent << "</Headers>" << std::endl;
-
- return true;
}