瀏覽代碼

Qualify temporary file names

default_compile_flags
vector-of-bool 5 年之前
父節點
當前提交
cad790c8b7
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/dds/temp.win.cpp

+ 1
- 1
src/dds/temp.win.cpp 查看文件

@@ -22,7 +22,7 @@ temporary_dir temporary_dir::create() {
std::string uuid_std_str(reinterpret_cast<const char*>(uuid_str));
::RpcStringFree(&uuid_str);

auto new_dir = base / uuid_std_str;
auto new_dir = base / ("dds-" + uuid_std_str);
std::error_code ec;
fs::create_directory(new_dir);
return std::make_shared<impl>(std::move(new_dir));

Loading…
取消
儲存