1. 15 Mar, 2020 1 commit
  2. 04 Mar, 2020 7 commits
  3. 03 Mar, 2020 2 commits
  4. 29 Feb, 2020 2 commits
  5. 28 Feb, 2020 1 commit
    • Steven Cartmell's avatar
      fix: Break from loop on last iteration to resolve clang-tidy warning · f999d879
      Steven Cartmell authored
      The clang-tidy warning `clang-analyzer-cplusplus.Move` warns when a
      moved from object is deferenced. This is triggered in spdlog because
      clang-tidy fails to detect that the `logger:set_formatter` will only
      move the unique_ptr on the last iteration of the loop, assuming that
      `f->clone` may be called on it afterwards.
      
      To fix, add a break statement after moving the pointer (on the last
      iteration) to let clang-tidy know the logger pointer is not used after
      this point.
      f999d879
  6. 26 Feb, 2020 7 commits
  7. 25 Feb, 2020 6 commits
  8. 24 Feb, 2020 2 commits
  9. 21 Feb, 2020 1 commit
  10. 20 Feb, 2020 3 commits
  11. 17 Feb, 2020 2 commits
  12. 16 Feb, 2020 2 commits
  13. 15 Feb, 2020 4 commits