소스 검색

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…
취소
저장