14 lines
199 B
C++
14 lines
199 B
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
|
|
#include "eval.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct FunctionCallTrace {
|
|
const Pos& pos;
|
|
FunctionCallTrace(const Pos& pos);
|
|
~FunctionCallTrace();
|
|
};
|
|
} // namespace nix
|