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