xo-expression2: + DVariable

This commit is contained in:
Roland Conybeare 2026-01-17 01:05:59 -05:00
commit a23307aabb
3 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,19 @@
/** @file DVariable.cpp
*
* @author Roland Conybeare, Jan 2026
**/
#include "DVariable.hpp"
#include "exprtype.hpp"
namespace xo {
namespace scm {
void
DVariable::assign_valuetype(TypeDescr td) noexcept
{
typeref_.resolve(td);
}
} /*namespace scm*/
} /*namespace xo*/
/* end DVariable.cpp */