1. 08 May, 2017 1 commit
    • Max Kellermann's avatar
      *: remove "pure" and "const" attributes from throwing functions · 788e3b31
      Max Kellermann authored
      The "pure" and "const" attributes are not so well-defined, and a
      recent clang version implements an optimization which pushes the
      definition's boundary beyond what I believed it was.  clang now
      assumes that functions declared "pure" cannot throw exceptions, even
      if they lack the "noexcept" specification.
      
      When compiled with this new clang version, MPD will crash randomly if
      an exception happens to get thrown by such as "pure" function
      (https://github.com/MusicPlayerDaemon/MPD/issues/41).
      
      This commit removes all such misplaced "pure" and "const" attributes,
      closing #41.
      788e3b31
  2. 03 Jan, 2017 1 commit
  3. 03 Dec, 2016 3 commits
  4. 24 Nov, 2016 2 commits
  5. 27 Oct, 2016 1 commit
  6. 26 Oct, 2016 2 commits
  7. 08 Sep, 2016 1 commit
  8. 17 Jun, 2016 1 commit
  9. 18 Mar, 2016 1 commit
  10. 10 Mar, 2016 5 commits
  11. 05 Mar, 2016 2 commits
  12. 28 Feb, 2016 1 commit
  13. 26 Feb, 2016 1 commit
  14. 18 Dec, 2015 1 commit
  15. 11 Nov, 2015 1 commit
  16. 15 Aug, 2015 1 commit
  17. 06 Aug, 2015 1 commit
  18. 01 Jan, 2015 1 commit
  19. 29 Aug, 2014 1 commit
  20. 28 Aug, 2014 1 commit
  21. 27 Feb, 2014 2 commits
  22. 21 Feb, 2014 1 commit
  23. 19 Feb, 2014 1 commit
  24. 03 Feb, 2014 1 commit
  25. 31 Jan, 2014 2 commits
  26. 30 Jan, 2014 1 commit
  27. 28 Jan, 2014 1 commit
  28. 13 Jan, 2014 1 commit
  29. 09 Jan, 2014 1 commit
    • Max Kellermann's avatar
      DetachedSong: fork of struct Song · 322b0616
      Max Kellermann authored
      From now on, struct Song will be used by the database only, and
      DetachedSong will be used by everybody else.  DetachedSong is easier
      to use, but Song has lower overhead.
      322b0616