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