Explorar el Código

No implicit string conversion on MSVC

default_compile_flags
vector-of-bool hace 5 años
padre
commit
2f9e5a5a30
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/dds/build/plan/exe.cpp

+ 1
- 1
src/dds/build/plan/exe.cpp Ver fichero

auto msg = fmt::format("Run test: {:30}", fs::relative(exe_path, env.output_root).string()); auto msg = fmt::format("Run test: {:30}", fs::relative(exe_path, env.output_root).string());
spdlog::info(msg); spdlog::info(msg);
auto start = std::chrono::high_resolution_clock::now(); auto start = std::chrono::high_resolution_clock::now();
auto res = run_proc({exe_path});
auto res = run_proc({exe_path.string()});
auto end = std::chrono::high_resolution_clock::now(); auto end = std::chrono::high_resolution_clock::now();
auto dur = std::chrono::duration_cast<std::chrono::microseconds>(end - start); auto dur = std::chrono::duration_cast<std::chrono::microseconds>(end - start);
if (res.okay()) { if (res.okay()) {

Cargando…
Cancelar
Guardar