diff options
author | Brad King <brad.king@kitware.com> | 2021-11-10 16:32:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-11-10 18:56:05 (GMT) |
commit | de6e362a88bc67d8376ad261f21b9b9ecefd1282 (patch) | |
tree | de2274c44f066ba4daf892ebf4a8c8d0bfa57493 /Source | |
parent | 3017b3e7d4da702c8b1e2dbfb9657b7517e108b8 (diff) | |
download | CMake-de6e362a88bc67d8376ad261f21b9b9ecefd1282.zip CMake-de6e362a88bc67d8376ad261f21b9b9ecefd1282.tar.gz CMake-de6e362a88bc67d8376ad261f21b9b9ecefd1282.tar.bz2 |
cmLocalGenerator: Clarify name of method to write unity source include lines
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 12 | ||||
-rw-r--r-- | 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<std::vector<cmSourceFile*>::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<std::string> AddUnityFilesModeAuto( cmGeneratorTarget* target, std::string const& lang, std::vector<cmSourceFile*> const& filtered_sources, cmValue beforeInclude, |