diff options
Diffstat (limited to 'third_party/nix/src/libexpr/primops.hh')
-rw-r--r-- | third_party/nix/src/libexpr/primops.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/primops.hh b/third_party/nix/src/libexpr/primops.hh index 0c9f6ccab1f7..ab5f64720273 100644 --- a/third_party/nix/src/libexpr/primops.hh +++ b/third_party/nix/src/libexpr/primops.hh @@ -6,7 +6,7 @@ namespace nix { struct RegisterPrimOp { - typedef std::vector<std::tuple<std::string, size_t, PrimOpFun>> PrimOps; + using PrimOps = std::vector<std::tuple<std::string, size_t, PrimOpFun> >; static PrimOps* primOps; /* You can register a constant by passing an arity of 0. fun will get called during EvalState initialization, so there |