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

#include "eval.hh"

#include <chrono>

namespace nix {

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