diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-25 13:39:38 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-02-25 16:13:02 +0100 |
commit | 14b38d0887f8a8d6b75039113eface57cfb19d06 (patch) | |
tree | 3323e6c0773a206c758225984972f9784d441010 /src/nix-env | |
parent | fd4b693ca20b8242aa544a04152e41b37aec19d1 (diff) |
xml-writer: Remove std aliases
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/nix-env.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index 52d07e3df..f83edb6a1 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -833,7 +833,7 @@ static bool cmpElemByName(const DrvInfo & a, const DrvInfo & b) } -typedef list<Strings> Table; +typedef std::list<Strings> Table; void printTable(Table & table) |