소스 검색

Fix non-POSIX URL paths on Windows

default_compile_flags
vector-of-bool 4 년 전
부모
커밋
0c9128b865
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/dds/remote/remote.cpp

+ 1
- 1
src/dds/remote/remote.cpp 파일 보기

@@ -48,7 +48,7 @@ struct remote_db {

static remote_db download_and_open_for_base(neo::url url) {
auto repo_url = url;
repo_url.path = fs::path(url.path).append("repo.db").string();
repo_url.path = fs::path(url.path).append("repo.db").generic_string();
return download_and_open(repo_url);
}


Loading…
취소
저장