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

Remove PrimOp constructor

This commit is contained in:
Eelco Dolstra 2020-08-20 12:34:04 +02:00
parent dc2f278c95
commit 25ecfffdc3
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 2 additions and 4 deletions

View file

@ -30,8 +30,6 @@ struct PrimOp
PrimOpFun fun;
size_t arity;
Symbol name;
PrimOp(PrimOpFun fun, size_t arity, Symbol name)
: fun(fun), arity(arity), name(name) { }
};