You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 satır
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. }