diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-01-03 12:59:23 +0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-01-03 12:59:23 +0100 |
commit | def5160b614a59a0aa96fe2252e3daa00146e061 (patch) | |
tree | 3ec0b2ade78dfbf00399246fea86d3706ce0db93 /src/libutil/immutable.hh | |
parent | 0a4e90395c3286a246b816575351b9f2016976ba (diff) |
Clear any immutable bits in the Nix store
Doing this once makes subsequent operations like garbage collecting
more efficient since we don't have to call makeMutable() first.
Diffstat (limited to 'src/libutil/immutable.hh')
-rw-r--r-- | src/libutil/immutable.hh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libutil/immutable.hh b/src/libutil/immutable.hh deleted file mode 100644 index 8e98b76a4..000000000 --- a/src/libutil/immutable.hh +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include <types.hh> - -namespace nix { - -/* Make the given path mutable. */ -void makeMutable(const Path & path); - -} |