about summary refs log blame commit diff
path: root/src/libexpr/function-trace.hh
blob: 3100ffea2c57f8cefdbcf2d55f9963789d04b324 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                        

                                       

  
#pragma once

#include "eval.hh"
#include <sys/time.h>

namespace nix {

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