1. 01 Dec, 2021 5 commits
  2. 26 Nov, 2021 3 commits
  3. 12 Nov, 2021 1 commit
    • Rosen Penev's avatar
      treewide: replace lock_guard with scoped_lock · 4e0e4c00
      Rosen Penev authored
      SonarLint reports the latter to be better:
      
      std::scoped_lock basically provides the same feature as std::lock_guard,
      but is more generic: It can lock several mutexes at the same time, with a
      deadlock prevention mechanism (see {rule:cpp:S5524}). The equivalent code
      to perform simultaneous locking with std::lock_guard is significantly more
      complex. Therefore, it is simpler to use std::scoped_lock all the time,
      even when locking only one mutex (there will be no performance impact).
      Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
      4e0e4c00
  4. 15 Oct, 2021 1 commit
  5. 07 Oct, 2021 1 commit
  6. 10 Aug, 2021 4 commits
  7. 28 Apr, 2021 1 commit
  8. 26 Apr, 2021 2 commits
  9. 08 Mar, 2021 7 commits
  10. 05 Mar, 2021 4 commits
  11. 02 Mar, 2021 4 commits
  12. 24 Feb, 2021 5 commits
  13. 22 Feb, 2021 1 commit
  14. 07 Feb, 2021 1 commit