diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-16T08·30+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-16T08·30+0000 |
commit | c11bbcfd26e554ca044c1cce293097e4e87ef31e (patch) | |
tree | ccbaf5b13b7f4d6de35ef7fcdaa00e51f194a25d /src/fstate.hh | |
parent | d41d085b771d0f87658fe22512178603b3a0c633 (diff) |
* Fix self-referential outputs.
* Fix -qp query.
Diffstat (limited to 'src/fstate.hh')
-rw-r--r-- | src/fstate.hh | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/fstate.hh b/src/fstate.hh index afbf34dab28a..72fc52805291 100644 --- a/src/fstate.hh +++ b/src/fstate.hh @@ -74,20 +74,6 @@ struct Slice }; -#if 0 -/* Realise an fstate expression in the file system. This requires - execution of all Derive() nodes. */ -FState realiseFState(FState fs, StringSet & paths); - -/* Return the path of an fstate expression. An empty string is - returned if the term is not a valid fstate expression. (!!!) */ -string fstatePath(FState fs); - -/* Return the paths referenced by fstate expression. */ -void fstateRefs(FState fs, StringSet & paths); -#endif - - /* Return a canonical textual representation of an expression. */ string printTerm(ATerm t); @@ -115,7 +101,7 @@ Slice normaliseFState(FSId id); /* Realise a Slice in the file system. */ void realiseSlice(const Slice & slice); -Strings fstatePaths(FSId id); +Strings fstatePaths(FSId id, bool normalise); #endif /* !__FSTATE_H */ |