From 5989629a7951e544ad4656672025a99ecd08c7c9 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sat, 11 Feb 2023 21:31:04 -0800 Subject: Change how slices work. I'm switching to a more macro-heavy solution. Hopefully it proves robust. --- bytecode/value_slice.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bytecode/value_slice.h (limited to 'bytecode/value_slice.h') diff --git a/bytecode/value_slice.h b/bytecode/value_slice.h new file mode 100644 index 0000000..09b2873 --- /dev/null +++ b/bytecode/value_slice.h @@ -0,0 +1,9 @@ +#ifndef _VALUE_SLICE_H_ +#define _VALUE_SLICE_H_ + +#include "slice.h" +#include "value.h" + +DEFINE_SLICE(value) + +#endif -- cgit v1.3.1