Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-31 | *: copyright year 2018 | Max Kellermann | |
2017-05-08 | *: remove "pure" and "const" attributes from throwing functions | Max Kellermann | |
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. | |||
2017-01-03 | update copyright year | Max Kellermann | |
2016-10-28 | AudioParser: throw exception on error | Max Kellermann | |
2016-02-26 | update copyright year to 2016 | Max Kellermann | |
2015-03-17 | *: doxygen fixups | Max Kellermann | |
2015-01-01 | Copyright year 2015 | Max Kellermann | |
2014-01-13 | copyright year 2014 | Max Kellermann | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | |
Replaces GLib's GError. | |||
2013-08-03 | audio_format: convert to C++ | Max Kellermann | |
2013-01-30 | audio_{parser,config}: convert to C++ | Max Kellermann | |