ソースを参照

Fix trigger of infinite recursion in MSVC when converting a path to a string

default_compile_flags
vector-of-bool 5年前
コミット
4c74d3a754
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/dds/compdb.cpp

+ 1
- 1
src/dds/compdb.cpp ファイルの表示

@@ -17,7 +17,7 @@ void dds::generate_compdb(const build_plan& plan, build_env_ref env) {
for (const compile_file_plan& cf : iter_compilations(plan)) {
auto command = cf.generate_compile_command(env);
auto entry = nlohmann::json::object({
{"directory", env.output_root},
{"directory", env.output_root.string()},
{"arguments", command},
{"file", cf.source_path().string()},
});

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