Skip to content

Commit 85afa41

Browse files
carlos-zamoraDHowett
authored andcommitted
Remove unnecessary FMT (#17795)
There's an unnecessary `fmt::format` here caught in the code review: #17678 (comment) This simply removes it. (cherry picked from commit 93d592b) Service-Card-Id: PVTI_lADOAF3p4s4AmhmQzgSwIS4 Service-Version: 1.22
1 parent b3f0afb commit 85afa41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cascadia/TerminalSettingsModel/Command.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
774774
// covers actions w/out args
775775
// - "command": "unbound" --> "unbound"
776776
// - "command": "copy" --> "copy"
777-
changes.emplace(fmt::format(FMT_COMPILE("{}"), json.asString()));
777+
changes.emplace(json.asString());
778778
}
779779
else
780780
{

0 commit comments

Comments
 (0)