From bae926d9f38ff5e959c18c576498f7e43612fb93 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 6 Dec 2024 00:20:03 -0600 Subject: [PATCH] [ox/std] Add CString type alias (synced from a6e24ff2b6b732589c2682424b95cbf20f09df02) --- src/ox/std/types.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ox/std/types.hpp b/src/ox/std/types.hpp index dcd208471..2e2f3c82b 100644 --- a/src/ox/std/types.hpp +++ b/src/ox/std/types.hpp @@ -61,6 +61,8 @@ using uint_t = unsigned; namespace ox { +using CString = char const*; + /** * Aliases type T in size and alignment to allow allocating space for a T * without running the constructor.