浏览代码

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);

正在加载...
取消
保存