1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-25 07:43:54 +02:00

Comment that cache-filling should be no-fail (we don't use it anyway)

This commit is contained in:
Paul Licameli
2017-03-20 11:18:30 -04:00
parent 54c1b0c955
commit 7159966eb4
5 changed files with 11 additions and 3 deletions

View File

@@ -78,7 +78,8 @@ class PROFILE_DLL_API BlockFile /* not final, abstract */ {
// Fill read cache of block file, if it has any
virtual bool GetNeedFillCache() { return false; }
virtual void FillCache() { /* no cache by default */ }
virtual void FillCache() /* noexcept */ { /* no cache by default */ }
/// Stores a representation of this file in XML
virtual void SaveXML(XMLWriter &xmlFile) = 0;