xo-gc/src/gc/MutationLogConfig.cpp

28 lines
665 B
C++

/** @file MutationLogConfig.cpp
*
* @author Roland Conybeare, Apr 2026
**/
#include "MutationLogConfig.hpp"
namespace xo {
namespace mm {
MutationLogConfig::MutationLogConfig(std::uint32_t ngen,
#ifdef OBSOLETE
std::uint32_t survive,
#endif
std::size_t mlog_z,
bool debug_flag)
: n_generation_{ngen},
#ifdef OBSOLETE
n_survive_threshold_{survive},
#endif
mutation_log_z_{mlog_z},
debug_flag_{debug_flag}
{}
}
}
/* end MutationLogConfig.cpp */