xo-gc: + scaffold for gc primitives
This commit is contained in:
parent
6dc2bf1e93
commit
57d895a41c
6 changed files with 179 additions and 0 deletions
22
src/gc/MutationLogEntry.cpp
Normal file
22
src/gc/MutationLogEntry.cpp
Normal 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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue