diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-01-21T17·29+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-01-21T17·29+0100 |
commit | 94f9c14d526abfe9b18045fc638e8f5a3a670210 (patch) | |
tree | 3bdd2cc964314dc48959171a2364d51dbf71f8e2 /src/libstore/build.cc | |
parent | a26307b28192e61bc06b5f5ef42f0fb51858d822 (diff) |
Fix some clang warnings
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 4329d9a22b95..1b379752fa0e 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -75,12 +75,9 @@ using std::map; static string pathNullDevice = "/dev/null"; -static const uid_t rootUserId = 0; - - /* Forward definition. */ class Worker; -class HookInstance; +struct HookInstance; /* A pointer to a goal. */ |