cycles_t is better served as an array_t typedef

This commit is contained in:
Adrian Conlon 2021-12-08 19:43:40 +00:00
parent 72705e8dd0
commit 61b7359505
3 changed files with 1 additions and 14 deletions

View File

@ -38,9 +38,6 @@
<ClCompile Include="cycle_t.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="cycles_t.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="byte_t.cpp">
<Filter>Source Files</Filter>
</ClCompile>

View File

@ -1,5 +0,0 @@
#include "stdafx.h"
#include "cycles_t.h"
cycles_t::cycles_t(const simdjson::dom::array input) noexcept
: array_t(input) {}

View File

@ -1,10 +1,5 @@
#pragma once
#include "simdjson/simdjson.h"
#include "array_t.h"
class cycles_t final : public array_t {
public:
cycles_t(simdjson::dom::array input) noexcept;
};
typedef array_t cycles_t; // Intended to indicate that cycles_t is meant to hold cycle_t objects