diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-29 19:28:00 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-29 19:28:00 -0700 |
| commit | 8ed88af8c9cf2ed2e6fd573b2cd5dc2b41b55625 (patch) | |
| tree | 24ac9076f262e58f835a4a0f4bebaa02a336b512 /toolsrc/src/commands_edit.cpp | |
| parent | a4ab4fd24150e0c1341aa05192b6cc9c12c57c49 (diff) | |
| download | vcpkg-8ed88af8c9cf2ed2e6fd573b2cd5dc2b41b55625.tar.gz vcpkg-8ed88af8c9cf2ed2e6fd573b2cd5dc2b41b55625.zip | |
Rename wchar_t overload of Strings::format() to wformat()
Diffstat (limited to 'toolsrc/src/commands_edit.cpp')
| -rw-r--r-- | toolsrc/src/commands_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_edit.cpp b/toolsrc/src/commands_edit.cpp index 71ae8b2c8..fe02bfa26 100644 --- a/toolsrc/src/commands_edit.cpp +++ b/toolsrc/src/commands_edit.cpp @@ -15,7 +15,7 @@ namespace vcpkg env_EDITOR = LR"(C:\Program Files (x86)\Microsoft VS Code\Code.exe)"; auto portpath = paths.ports / spec.name; - std::wstring cmdLine = Strings::format(LR"("%s" "%s" "%s")", env_EDITOR, portpath.native(), (portpath / "portfile.cmake").native()); + std::wstring cmdLine = Strings::wformat(LR"("%s" "%s" "%s")", env_EDITOR, portpath.native(), (portpath / "portfile.cmake").native()); exit(System::cmd_execute(cmdLine)); } } |
