소스 검색

Fix: fs::path doesn't convert to string on win

default_compile_flags
vector-of-bool 3 년 전
부모
커밋
8e154d55d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/dds/sdist/library/manifest.cpp

+ 1
- 1
src/dds/sdist/library/manifest.cpp 파일 보기

@@ -13,7 +13,7 @@
using namespace dds;

library_manifest library_manifest::load_from_file(path_ref fpath) {
DDS_E_SCOPE(e_library_manifest_path{std::string(fpath)});
DDS_E_SCOPE(e_library_manifest_path{fpath.string()});

auto content = slurp_file(fpath);
auto data = json5::parse_data(content);

Loading…
취소
저장