Browse Source

node.cpp

allocs
Antonio SJ Musumeci 2 weeks ago
parent
commit
7d7d50f99c
  1. 4
      libfuse/lib/node.cpp

4
libfuse/lib/node.cpp

@ -13,6 +13,10 @@ struct stack_t
struct StackInfo struct StackInfo
{ {
StackInfo(stack_t *stack_,
bool *should_gc_)
: stack(stack_),
should_gc(should_gc_)
stack_t *stack; stack_t *stack;
bool *should_gc; bool *should_gc;
}; };

Loading…
Cancel
Save