mirror of
https://github.com/NixOS/nix.git
synced 2025-11-11 13:06:01 +01:00
Remove GCRef, keep references in a map. Change to nix_gc_incref and nix_gc_decref, where users will mostly use nix_gc_decref.
18 lines
303 B
C++
18 lines
303 B
C++
#ifndef NIX_API_EXPR_INTERNAL_H
|
|
#define NIX_API_EXPR_INTERNAL_H
|
|
|
|
// forward declaration
|
|
namespace nix {
|
|
class EvalState;
|
|
class BindingsBuilder;
|
|
}; // namespace nix
|
|
|
|
struct State {
|
|
nix::EvalState state;
|
|
};
|
|
|
|
struct BindingsBuilder {
|
|
nix::BindingsBuilder builder;
|
|
};
|
|
|
|
#endif // NIX_API_EXPR_INTERNAL_H
|