diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-16T02·23-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-16T21·40+0000 |
commit | db4ac8ea7c22fc49877e4ec9f170af852ba986df (patch) | |
tree | f9ae40c5132734792f1ce429beaf0720d45b9a26 /third_party/nix | |
parent | 4468e411fd40945f96fb473b8574721d1dfd0f0b (diff) |
chore(3p/nix/worker-protocol): Add missing includes r/1331
These files were always implicitly depended upon by worker-protocol.hh, but just so happened also always be included in places where the other ones were already present. We are likely getting rid of this file sooner rather than later, but in the meantime this will cause clangd to shut up while I'm editing the file. Change-Id: I0d765f8b86828b6612e5483417e452221ea3c5b1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1207 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/nix')
-rw-r--r-- | third_party/nix/src/libstore/worker-protocol.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/nix/src/libstore/worker-protocol.hh b/third_party/nix/src/libstore/worker-protocol.hh index c53d079a0668..663b1ff08154 100644 --- a/third_party/nix/src/libstore/worker-protocol.hh +++ b/third_party/nix/src/libstore/worker-protocol.hh @@ -1,5 +1,8 @@ #pragma once +#include "libstore/store-api.hh" +#include "libutil/types.hh" + namespace nix { #define WORKER_MAGIC_1 0x6e697863 |