1
0
Fork 0
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:
Eelco Dolstra 2003-07-04 12:18:06 +00:00
parent 40b5936691
commit 207ff2caf0
8 changed files with 145 additions and 43 deletions

View file

@ -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);