xo-gc: + scaffold for gc primitives

This commit is contained in:
Roland Conybeare 2026-03-24 22:20:23 -04:00
commit 57d895a41c
6 changed files with 179 additions and 0 deletions

View file

@ -0,0 +1,22 @@
/** @file MutationLogEntry.cpp
*
* @author Roland Conybeare, Mar 2026
**/
#include "MutationLogEntry.hpp"
namespace xo {
namespace mm {
MutationLogEntry::MutationLogEntry(void * parent,
void ** p_data,
obj<AGCObject> snap)
: parent_{parent},
p_data_{p_data},
snap_{snap}
{}
} /*namespace mm*/
} /*namespace xo*/
/* end MutationLogEntry.cpp */