Prefix some calls with std::

These depend on C++ argument dependent name lookup and won't work with
an upcoming cleanup.
This commit is contained in:
Arthur Eubanks
2025-04-20 18:16:53 -07:00
committed by teejusb
parent 9dc5cea91d
commit 9131dc6b68
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -2124,7 +2124,7 @@ void SongManager::AddSongToList(Song* new_song)
m_pSongs.push_back(new_song);
RString dir= new_song->GetSongDir();
dir.MakeLower();
m_SongsByDir.insert(make_pair(dir, new_song));
m_SongsByDir.insert(std::make_pair(dir, new_song));
}
void SongManager::FreeAllLoadedFromProfile( ProfileSlot slot )