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

Remove pre-C++11 hackiness

This commit is contained in:
Eelco Dolstra 2022-05-25 15:49:41 +02:00
parent 762fa2b2ff
commit 9acc770ce4
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
6 changed files with 17 additions and 17 deletions

View file

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