1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-11 21:16:02 +01:00

nix_api_expr: remove bindingsbuilder refcounting

This commit is contained in:
Yorick van Pelt 2023-07-27 15:58:18 +02:00 committed by José Luis Lafuente
parent aa85f7d917
commit 022b918db1
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
3 changed files with 27 additions and 21 deletions

View file

@ -4,7 +4,8 @@
// forward declaration
namespace nix {
class EvalState;
};
class BindingsBuilder;
}; // namespace nix
struct State {
nix::EvalState state;
@ -14,4 +15,8 @@ struct GCRef {
void *ptr;
};
struct BindingsBuilder {
nix::BindingsBuilder builder;
};
#endif // NIX_API_EXPR_INTERNAL_H