diff options
Diffstat (limited to 'Source/cmCableSourceFilesCommand.cxx')
-rw-r--r-- | Source/cmCableSourceFilesCommand.cxx | 4 |
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; } |