ソースを参照

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

読み込み中…
キャンセル
保存