summaryrefslogtreecommitdiffstats
path: root/Source/cmCxxModuleMapper.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-07-02 20:08:30 (GMT)
committerBrad King <brad.king@kitware.com>2023-07-13 12:40:22 (GMT)
commite39b6ebc19d276f739500192a15fa809639857c2 (patch)
treea9185a71a2add88c9c7a309ba0eb83d555b27140 /Source/cmCxxModuleMapper.cxx
parentd156eca6d1d8f2837787151640641f678e1ca28d (diff)
downloadCMake-e39b6ebc19d276f739500192a15fa809639857c2.zip
CMake-e39b6ebc19d276f739500192a15fa809639857c2.tar.gz
CMake-e39b6ebc19d276f739500192a15fa809639857c2.tar.bz2
cmCxxModuleMapper: use a `char` for streaming single bytes
Diffstat (limited to 'Source/cmCxxModuleMapper.cxx')
-rw-r--r--Source/cmCxxModuleMapper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCxxModuleMapper.cxx b/Source/cmCxxModuleMapper.cxx
index e836a2a..bb650ea 100644
--- a/Source/cmCxxModuleMapper.cxx
+++ b/Source/cmCxxModuleMapper.cxx
@@ -122,7 +122,7 @@ std::string CxxModuleMapContentGcc(CxxModuleLocations const& loc,
// generate any).
// Write the root directory to use for module paths.
- mm << "$root " << loc.RootDirectory << "\n";
+ mm << "$root " << loc.RootDirectory << '\n';
for (auto const& p : obj.Provides) {
auto bmi_loc = loc.BmiGeneratorPathForModule(p.LogicalName);