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

            
                 
 
                          


               



                                    
  
                   
#pragma once

#include <chrono>

#include "libexpr/eval.hh"

namespace nix {

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