6e946c8e72
one pass. This halves the amount of I/O.
14 lines
226 B
C++
14 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 */
|