From de6e362a88bc67d8376ad261f21b9b9ecefd1282 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 10 Nov 2021 11:32:37 -0500 Subject: cmLocalGenerator: Clarify name of method to write unity source include lines --- Source/cmLocalGenerator.cxx | 12 +++++++----- Source/cmLocalGenerator.h | 9 ++++----- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 2b5b711..8658281 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -2819,15 +2819,17 @@ std::string cmLocalGenerator::WriteUnitySource( file << "/* generated by CMake */\n\n"; for (cmSourceFile* sf : sources) { RegisterUnitySources(target, sf, filename); - IncludeFileInUnitySources(file, sf->ResolveFullPath(), beforeInclude, - afterInclude, uniqueIdName); + WriteUnitySourceInclude(file, sf->ResolveFullPath(), beforeInclude, + afterInclude, uniqueIdName); } return filename; } -void cmLocalGenerator::IncludeFileInUnitySources( - cmGeneratedFileStream& unity_file, std::string const& sf_full_path, - cmValue beforeInclude, cmValue afterInclude, cmValue uniqueIdName) const +void cmLocalGenerator::WriteUnitySourceInclude(std::ostream& unity_file, + std::string const& sf_full_path, + cmValue beforeInclude, + cmValue afterInclude, + cmValue uniqueIdName) const { if (cmNonempty(uniqueIdName)) { std::string pathToHash; diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 7078482..5e7de0e 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -28,7 +28,6 @@ class cmComputeLinkInformation; class cmCustomCommand; class cmCustomCommandGenerator; class cmCustomCommandLines; -class cmGeneratedFileStream; class cmGeneratorTarget; class cmGlobalGenerator; class cmImplicitDependsList; @@ -665,10 +664,10 @@ private: cmGeneratorTarget* target, cmRange::const_iterator> sources, cmValue beforeInclude, cmValue afterInclude, std::string filename) const; - void IncludeFileInUnitySources(cmGeneratedFileStream& unity_file, - std::string const& sf_full_path, - cmValue beforeInclude, cmValue afterInclude, - cmValue uniqueIdName) const; + void WriteUnitySourceInclude(std::ostream& unity_file, + std::string const& sf_full_path, + cmValue beforeInclude, cmValue afterInclude, + cmValue uniqueIdName) const; std::vector AddUnityFilesModeAuto( cmGeneratorTarget* target, std::string const& lang, std::vector const& filtered_sources, cmValue beforeInclude, -- cgit v0.12