blob: 6b810159b8fc61a07ec24d2b4d117e5522f962cc (
plain) (
tree)
|
|
#pragma once
#include <chrono>
#include "libexpr/eval.hh"
namespace nix {
struct FunctionCallTrace {
const Pos& pos;
FunctionCallTrace(const Pos& pos);
~FunctionCallTrace();
};
} // namespace nix
|