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

Fix non-virtual destructor warning

This commit is contained in:
Robert Hensing 2025-04-20 22:43:06 +02:00
parent f186491db9
commit 363ee6dfcb

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;
}; };
} }