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