mirror of
https://github.com/NixOS/nix
synced 2025-07-05 16:31:47 +02:00
* Caching of expression successors.
This commit is contained in:
parent
40b5936691
commit
207ff2caf0
8 changed files with 145 additions and 43 deletions
12
src/util.hh
12
src/util.hh
|
@ -61,6 +61,18 @@ string baseNameOf(string path);
|
|||
void deletePath(string path);
|
||||
|
||||
|
||||
/* Messages. */
|
||||
|
||||
class Nest
|
||||
{
|
||||
private:
|
||||
bool nest;
|
||||
public:
|
||||
Nest(bool nest);
|
||||
~Nest();
|
||||
};
|
||||
|
||||
void msg(const format & f);
|
||||
void debug(const format & f);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue