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

Remove std::list alias

This commit is contained in:
Eelco Dolstra 2022-02-21 16:25:12 +01:00
parent e2422c4582
commit afcdc7606c
5 changed files with 8 additions and 9 deletions

View file

@ -574,9 +574,9 @@ struct CompareValues
#if HAVE_BOEHMGC
typedef list<Value *, gc_allocator<Value *> > ValueList;
typedef std::list<Value *, gc_allocator<Value *> > ValueList;
#else
typedef list<Value *> ValueList;
typedef std::list<Value *> ValueList;
#endif