Преглед изворни кода

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()},
});

Loading…
Откажи
Сачувај