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