Shut up some warnings

(cherry picked from commit 99e8e58f2de9941353b47ed14fbe4ed76d635519)
This commit is contained in:
Eelco Dolstra 2019-09-20 13:48:53 +02:00
parent bd79c1f6f6
commit 3a022d4599
2 changed files with 4 additions and 0 deletions

View File

@ -91,6 +91,8 @@ class Store;
struct Downloader
{
virtual ~Downloader() { }
/* Enqueue a download request, returning a future to the result of
the download. The future may throw a DownloadError
exception. */

View File

@ -19,6 +19,8 @@ public:
uint64_t narOffset = 0; // regular files only
};
virtual ~FSAccessor() { }
virtual Stat stat(const Path & path) = 0;
virtual StringSet readDirectory(const Path & path) = 0;