diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-02 20:08:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-07-13 12:40:22 (GMT) |
commit | e39b6ebc19d276f739500192a15fa809639857c2 (patch) | |
tree | a9185a71a2add88c9c7a309ba0eb83d555b27140 /Source/cmCxxModuleMapper.cxx | |
parent | d156eca6d1d8f2837787151640641f678e1ca28d (diff) | |
download | CMake-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.cxx | 2 |
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); |