minor changes

This commit is contained in:
2025-09-15 01:51:46 -04:00
parent f35e60877c
commit fd61fc56db
2 changed files with 30 additions and 25 deletions
+6 -1
View File
@@ -42,7 +42,6 @@ enum {
#define internal static
#define global
#define gknown
#define ct_lit
#define offset_of(type, member) cast(SSIZE, & (((type*) 0)->member))
#define static_assert _Static_assert
#define typeof __typeof__
@@ -58,6 +57,12 @@ enum {
#define giga(n) (cast(SSIZE, n) << 30)
#define tera(n) (cast(SSIZE, n) << 40)
#if 1
# define dbg_args(...) __VA_ARGS__
#else
# define dbg_args(...)
#endif
#define span_iter(type, iter, m_begin, op, m_end) \
tmpl(Iter_Span,type) iter = { \
.r = {(m_begin), (m_end)}, \