mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-08 18:30:32 +00:00
8 lines
164 B
C++
8 lines
164 B
C++
#include "stdafx.h"
|
|
#include "element_t.h"
|
|
|
|
element_t::element_t() noexcept {}
|
|
|
|
element_t::element_t(const simdjson::dom::element input) noexcept
|
|
: m_raw(input) {}
|