Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-19 | check.h: remove obsolete header | Max Kellermann | |
Since we switched from autotools to Meson in commit 94592c14062d5afc9482d11baa401648082022c0, we don't need to include `config.h` early to properly enable large file support. Meson passes the required macros on the compiler command line instead of defining them in `config.h`. This means we can include `config.h` at any time, whenever we want to check its macros, and there are no ordering constraints. | |||
2018-10-31 | *: copyright year 2018 | Max Kellermann | |
2018-07-18 | fs/Path: add method ToUTF8Throw() | Max Kellermann | |
2018-07-17 | fs/Path: add operator/(Path,Path) | Max Kellermann | |
Modeled after std::filesystem::operator/() from C++17. | |||
2018-01-21 | storage/Interface: wrap StorageDirectoryReader in std::unique_ptr | Max Kellermann | |
2018-01-17 | fs/AllocatedPath: make the nullptr_t constructor public | Max Kellermann | |
2018-01-02 | storage/Plugin: return std::unique_ptr<Storage> | Max Kellermann | |
2017-12-19 | Main, ...: catch any exception, not just std::runtime_error | Max Kellermann | |
2017-12-18 | storage/Interface: add "noexcept" | Max Kellermann | |
2017-12-12 | *: check defined(_WIN32) instead of defined(WIN32) | Max Kellermann | |
Only _WIN32 is defined by the compiler, and WIN32 is not standardized and may be missing. Closes #169 | |||
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-05-08 | *: add "noexcept" to many, many function prototypes | Max Kellermann | |
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing. | |||
2017-01-03 | update copyright year | Max Kellermann | |
2016-10-27 | storage: migrate from class Error to C++ exceptions | Max Kellermann | |
2016-04-12 | util/StringPointer: rename typedef pointer to pointer_type | Max Kellermann | |
2016-02-26 | update copyright year to 2016 | Max Kellermann | |
2015-12-29 | fs/DirectoryReader: use C++ exceptions instead of class Error | Max Kellermann | |
2015-11-06 | util/StringCompare: add StringIsEmpty() | Max Kellermann | |
2015-03-03 | storage/local: use PathTraitsFS typedefs | Max Kellermann | |
2015-02-28 | fs/FileInfo: new library providing GetFileInfo() | Max Kellermann | |
Replaces StatFile(), with a portable data object. | |||
2015-02-28 | storage/FileInfo: rename to StorageFileInfo | Max Kellermann | |
2015-01-01 | Copyright year 2015 | Max Kellermann | |
2014-10-02 | storage: remove redundant "virtual" keywords | Max Kellermann | |
"override" implies "virtual". | |||
2014-02-07 | storage: add struct StoragePlugin and a plugin registry | Max Kellermann | |
2014-02-07 | storage/local: remove utf8 path from constructor | Max Kellermann | |
Build the UTF-8 version of the path automatically in the constructor. | |||
2014-02-07 | StoragePlugin: add method MapToRelativeUTF8() | Max Kellermann | |
Replaces map_to_relative_path() from Mapper.cxx. | |||
2014-02-07 | storage/local: hide the class declarations | Max Kellermann | |
Hide inside CreateLocalStorage(). | |||
2014-02-05 | storage/local: OpenDirectory() returns StorageDirectoryReader* | Max Kellermann | |
2014-02-05 | storage/local: move to src/storage/plugins/ | Max Kellermann | |