blob: e9a2526bde8214da7193d05aecd9ce5730b66a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "eval.hh"
#include <chrono>
namespace nix {
struct FunctionCallTrace
{
const Pos pos;
FunctionCallTrace(const Pos & pos);
~FunctionCallTrace();
};
}
|