forked from lix-project/lix
cb90e382b5
This prevents them from being inlined. On gcc 9, this reduces the stack size needed for nix-instantiate '<nixpkgs>' -A texlive.combined.scheme-full --dry-run from 12.9 MiB to 4.8 MiB.
16 lines
189 B
C++
16 lines
189 B
C++
#pragma once
|
|
|
|
#include "eval.hh"
|
|
|
|
#include <chrono>
|
|
|
|
namespace nix {
|
|
|
|
struct FunctionCallTrace
|
|
{
|
|
const Pos & pos;
|
|
FunctionCallTrace(const Pos & pos);
|
|
~FunctionCallTrace();
|
|
};
|
|
}
|