選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
328B

  1. #include "./spdlog_user.hpp"
  2. #include <spdlog/spdlog.h>
  3. int main() {
  4. auto result = ::write_message();
  5. if (result != 42) {
  6. spdlog::critical(
  7. "The test library returned the wrong value (This is a REAL dds test failure, and is "
  8. "very unexpected)");
  9. return 1;
  10. }
  11. return 0;
  12. }