const reference conversion
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
d53d85bd79
commit
e03f82636a
@ -316,7 +316,7 @@ SimpleDatabase::Visit(const DatabaseSelection &selection,
|
||||
|
||||
if (r.rest.find('/') == std::string_view::npos) {
|
||||
if (visit_song) {
|
||||
Song *song = r.directory->FindSong(r.rest);
|
||||
const Song *song = r.directory->FindSong(r.rest);
|
||||
if (song != nullptr) {
|
||||
const auto song2 = song->Export();
|
||||
if (selection.Match(song2))
|
||||
|
@ -84,7 +84,7 @@ try {
|
||||
}
|
||||
|
||||
bool
|
||||
directory_child_access(Storage &storage, const Directory &directory,
|
||||
directory_child_access(const Storage &storage, const Directory &directory,
|
||||
std::string_view name, int mode) noexcept
|
||||
{
|
||||
#ifdef _WIN32
|
||||
|
@ -55,7 +55,7 @@ directory_child_is_regular(Storage &storage, const Directory &directory,
|
||||
*/
|
||||
[[gnu::pure]]
|
||||
bool
|
||||
directory_child_access(Storage &storage, const Directory &directory,
|
||||
directory_child_access(const Storage &storage, const Directory &directory,
|
||||
std::string_view name, int mode) noexcept;
|
||||
|
||||
#endif
|
||||
|
2
src/input/cache/Stream.cxx
vendored
2
src/input/cache/Stream.cxx
vendored
@ -24,7 +24,7 @@ CacheInputStream::CacheInputStream(InputCacheLease _lease,
|
||||
:InputStream(_lease->GetUri(), _mutex),
|
||||
InputCacheLease(std::move(_lease))
|
||||
{
|
||||
auto &i = GetCacheItem();
|
||||
const auto &i = GetCacheItem();
|
||||
size = i.size();
|
||||
seekable = true;
|
||||
SetReady();
|
||||
|
Loading…
Reference in New Issue
Block a user