Skip to content

Commit

Permalink
chore: use std format
Browse files Browse the repository at this point in the history
  • Loading branch information
Laupetin committed Oct 16, 2024
1 parent 049d55b commit 2fe0e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Linker/Linker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class LinkerImpl final : public Linker
{
std::unique_ptr<ZoneDefinition> zoneDefinition;
{
const auto definitionFileName = targetName + ".zone";
const auto definitionFileName = std::format("{}.zone", targetName);
const auto definitionStream = sourceSearchPath->Open(definitionFileName);
if (!definitionStream.IsOpen())
{
Expand Down

0 comments on commit 2fe0e9c

Please sign in to comment.