diff options
Diffstat (limited to 'src/nix-store/graphml.hh')
-rw-r--r-- | src/nix-store/graphml.hh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nix-store/graphml.hh b/src/nix-store/graphml.hh index b78df1e49..78be8a367 100644 --- a/src/nix-store/graphml.hh +++ b/src/nix-store/graphml.hh @@ -1,11 +1,9 @@ #pragma once -#include "types.hh" +#include "store-api.hh" namespace nix { -class Store; - -void printGraphML(ref<Store> store, const PathSet & roots); +void printGraphML(ref<Store> store, StorePathSet && roots); } |