/** @file GCObjectConversion_DInteger.hpp * * @author Roland Conybeare, Jan 2026 **/ #pragma once #include "DInteger.hpp" #include "number/IGCObject_DInteger.hpp" #include namespace xo { namespace scm { template <> struct GCObjectConversion { static_assert(std::is_same_v); using AGCObject = xo::mm::AGCObject; using AAllocator = xo::mm::AAllocator; static obj to_gco(obj mm, long x); static long from_gco(obj mm, obj gco); }; } } /*namespace xo*/ /* end GCObjectConversion_DInteger.hpp */