clang-format

This commit is contained in:
kentsangkm 2021-06-30 21:15:53 +02:00 committed by John Maguire
parent cbe384d142
commit f35a640ce3
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ class CddaDevice : public ConnectedDevice {
bool Init() override;
bool CopyToStorage(const MusicStorage::CopyJob&) override { return false; }
bool DeleteFromStorage(const MusicStorage::DeleteJob&) override { return false; }
bool DeleteFromStorage(const MusicStorage::DeleteJob&) override {
return false;
}
CddaSongLoader* loader();
// Access to the raw cdio device handle.
CdIo_t* raw_cdio(); // TODO: not ideal, but Ripper needs this currently