about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/function-trace.hh
blob: 93d70862eda144ef93e3699112350431444b6edb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <chrono>

#include "eval.hh"

namespace nix {

struct FunctionCallTrace {
  const Pos& pos;
  FunctionCallTrace(const Pos& pos);
  ~FunctionCallTrace();
};
}  // namespace nix