1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

libutil: Remove non-needed constructor

This commit is contained in:
Jacek Galowicz 2023-10-19 18:24:54 +01:00
parent 87c4f4a972
commit 55f06b6f30
2 changed files with 2 additions and 5 deletions

View file

@ -148,9 +148,6 @@ public:
{
bool isAlias;
AbstractSetting * setting;
SettingData(bool isAlias, AbstractSetting * setting)
: isAlias(isAlias), setting(setting)
{ }
};
typedef std::map<std::string, SettingData> Settings;