cmCxxModuleMapper: use a char for streaming single bytes

This commit is contained in:
Ben Boeckel
2023-07-02 16:08:30 -04:00
committed by Brad King
parent d156eca6d1
commit e39b6ebc19

View File

@@ -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);