Merge remote-tracking branches 'neheb/bind', 'neheb/move' and 'neheb/str'

This commit is contained in:
Max Kellermann
2020-02-04 17:03:49 +01:00
17 changed files with 50 additions and 46 deletions

View File

@@ -38,7 +38,7 @@ struct ApeFooter {
};
bool
tag_ape_scan(InputStream &is, ApeTagCallback callback)
tag_ape_scan(InputStream &is, const ApeTagCallback& callback)
try {
std::unique_lock<Mutex> lock(is.mutex);

View File

@@ -37,6 +37,6 @@ typedef std::function<bool(unsigned long flags, const char *key,
* present
*/
bool
tag_ape_scan(InputStream &is, ApeTagCallback callback);
tag_ape_scan(InputStream &is, const ApeTagCallback& callback);
#endif