mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-16 13:04:48 +00:00
9e9c15e289
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
11 lines
271 B
C++
11 lines
271 B
C++
#include "stdafx.h"
|
|
#include "opcode_test_suite_t.h"
|
|
|
|
opcode_test_suite_t::opcode_test_suite_t(const std::string path) noexcept
|
|
: parser_t(path) {}
|
|
|
|
co_generator_t<test_t> opcode_test_suite_t::generator() {
|
|
for (const auto element : *this)
|
|
co_yield test_t(element);
|
|
}
|