1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Merge pull request #11956 from xokdvium/dev/get-rid-of-non-virtual-dtor-warning

fix(libutil/config): declare virtual dtor for AbstractConfig
This commit is contained in:
John Ericson 2024-11-25 17:00:27 -05:00 committed by GitHub
commit 121020fc50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,6 +115,8 @@ public:
* Re-applies all previously attempted changes to unknown settings
*/
void reapplyUnknownSettings();
virtual ~AbstractConfig() = default;
};
/**