1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 10:41:16 +02:00

Merge pull request #13054 from roberth/fix-non-virt-dtor

Fix non-virtual destructor warning
This commit is contained in:
mergify[bot] 2025-04-20 21:50:32 +00:00 committed by GitHub
commit 933ed27dd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,6 +26,8 @@ struct InputCache
virtual void clear() = 0; virtual void clear() = 0;
static ref<InputCache> create(); static ref<InputCache> create();
virtual ~InputCache() = default;
}; };
} }