summaryrefslogtreecommitdiff
path: root/include/pso/macros.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-03-08 16:41:27 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-03-08 16:41:27 -0400
commitc194e33e98492bbd0384f2a6b9a533bcfb57701d (patch)
treeb029d62b0ab06f10852ec5d409094ffd0f3f19e2 /include/pso/macros.h
parent09c901655db3bb42d2aac4b506846b18833d777c (diff)
macros: Add `as()`
Diffstat (limited to 'include/pso/macros.h')
-rw-r--r--include/pso/macros.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pso/macros.h b/include/pso/macros.h
index 291a550..e182c54 100644
--- a/include/pso/macros.h
+++ b/include/pso/macros.h
@@ -108,4 +108,6 @@
PRIVATE_MEMBER_GETTER_FUNC(ret_type, name, __VA_ARGS__); \
PRIVATE_MEMBER_SETTER_FUNC(ret_type, name, __VA_ARGS__)
+#define as(type, var) reinterpret_cast<type>(var)
+
#endif