Explorar el Código

Tweak error punct and alignment

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

+ 2
- 2
src/dds/solve/solve.cpp Ver fichero

@@ -106,7 +106,7 @@ struct explainer {
void put(pubgrub::explain::no_solution) { strm << "Dependencies cannot be satisfied"; }

void put(pubgrub::explain::dependency<req_type> dep) {
strm << dep.dependent << " requires " << dep.dependency << '.';
strm << dep.dependent << " requires " << dep.dependency;
}

void put(pubgrub::explain::unavailable<req_type> un) {
@@ -136,7 +136,7 @@ struct explainer {
at_head = true;
strm.str("");
put(cncl.value);
spdlog::error("╘═ Then: {}.", strm.str());
spdlog::error("╘═ Then: {}.", strm.str());
}

void operator()(pubgrub::explain::separator) { spdlog::error(""); }

Cargando…
Cancelar
Guardar