aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/nar-accessor.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-15 12:11:27 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-15 12:11:27 +0100
commit02654f782f31d142f59af23d4a10dcf9134a7ff2 (patch)
tree18739a6a41a3cc01ac94fb867554496d1be69f69 /src/libstore/nar-accessor.cc
parent00a75b1cd281e85843cae5da5d605f6e3bc733f1 (diff)
Fix Darwin build
http://hydra.nixos.org/build/33279996
Diffstat (limited to 'src/libstore/nar-accessor.cc')
-rw-r--r--src/libstore/nar-accessor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/nar-accessor.cc b/src/libstore/nar-accessor.cc
index ff7890af8..8896862be 100644
--- a/src/libstore/nar-accessor.cc
+++ b/src/libstore/nar-accessor.cc
@@ -33,7 +33,7 @@ struct NarIndexer : ParseSink, StringSource
{
}
- void createDirectory(const Path & path)
+ void createDirectory(const Path & path) override
{
members.emplace(path,
NarMember{FSAccessor::Type::tDirectory, false, 0, 0});
@@ -44,7 +44,7 @@ struct NarIndexer : ParseSink, StringSource
currentPath = path;
}
- void isExecutable()
+ void isExecutable() override
{
isExec = true;
}