ソースを参照

Fix logging exceptions generating bad format strings. Oops.

default_compile_flags
vector-of-bool 5年前
コミット
d711d59e13
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/dds/util/parallel.cpp

+ 1
- 1
src/dds/util/parallel.cpp ファイルの表示

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

読み込み中…
キャンセル
保存