about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/function-trace.hh
#pragma once

#include <chrono>

#include "libexpr/eval.hh"

namespace nix {

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