Procházet zdrojové kódy

Fix logging exceptions generating bad format strings. Oops.

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

+ 1
- 1
src/dds/util/parallel.cpp Zobrazit soubor

try { try {
std::rethrow_exception(eptr); std::rethrow_exception(eptr);
} catch (const std::exception& e) { } catch (const std::exception& e) {
dds_log(error, e.what());
dds_log(error, "{}", e.what());
} }
} }

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