mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-21 18:29:57 +00:00
cycles_t is better served as an array_t typedef
This commit is contained in:
parent
72705e8dd0
commit
61b7359505
@ -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>
|
||||
|
@ -1,5 +0,0 @@
|
||||
#include "stdafx.h"
|
||||
#include "cycles_t.h"
|
||||
|
||||
cycles_t::cycles_t(const simdjson::dom::array input) noexcept
|
||||
: array_t(input) {}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user