Procházet zdrojové kódy

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

default_compile_flags
vector-of-bool před 5 roky
rodič
revize
4c74d3a754
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/dds/compdb.cpp

+ 1
- 1
src/dds/compdb.cpp Zobrazit soubor

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

Načítá se…
Zrušit
Uložit