mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
75068e7d75
* Optimise header file usage a bit. * Compile the parser as C++.
12 lines
190 B
C++
12 lines
190 B
C++
#ifndef __REFERENCES_H
|
|
#define __REFERENCES_H
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
PathSet scanForReferences(const Path & path, const PathSet & refs);
|
|
|
|
}
|
|
|
|
#endif /* !__REFERENCES_H */
|