forked from lix-project/lix
6e946c8e72
one pass. This halves the amount of I/O.
15 lines
226 B
C++
15 lines
226 B
C++
#ifndef __REFERENCES_H
|
|
#define __REFERENCES_H
|
|
|
|
#include "types.hh"
|
|
#include "hash.hh"
|
|
|
|
namespace nix {
|
|
|
|
PathSet scanForReferences(const Path & path, const PathSet & refs,
|
|
Hash & hash);
|
|
|
|
}
|
|
|
|
#endif /* !__REFERENCES_H */
|