Browse Source

Fix logging exceptions generating bad format strings. Oops.

default_compile_flags
vector-of-bool 4 years ago
parent
commit
d711d59e13
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dds/util/parallel.cpp

+ 1
- 1
src/dds/util/parallel.cpp View File

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

Loading…
Cancel
Save