blob: 4516cc7442f08fd6d3b98c7cd2686536ab7f5e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "gc-store.hh"
namespace nix {
GcStore & GcStore::require(Store & store)
{
auto * gcStore = dynamic_cast<GcStore *>(&store);
if (!gcStore)
throw UsageError("Garbage collection not supported by this store");
return *gcStore;
}
}
|