Nix 2.26.3
Nix, the purely functional package manager; unstable internal interfaces
 
Loading...
Searching...
No Matches
function-trace.hh
Go to the documentation of this file.
1#pragma once
3
4#include "eval.hh"
5
6#include <chrono>
7
8namespace nix {
9
10struct FunctionCallTrace
11{
12 const Pos pos;
13 FunctionCallTrace(const Pos & pos);
14 ~FunctionCallTrace();
15};
16}
Definition position.hh:20