summaryrefslogtreecommitdiff
path: root/deimos/core/gsl.h
diff options
context:
space:
mode:
Diffstat (limited to 'deimos/core/gsl.h')
-rw-r--r--deimos/core/gsl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/deimos/core/gsl.h b/deimos/core/gsl.h
index 2000f6a..b54fc65 100644
--- a/deimos/core/gsl.h
+++ b/deimos/core/gsl.h
@@ -6,6 +6,8 @@ namespace gsl
using zstring = char*;
using czstring = const char*;
+template<typename T> using owner = T;
+
} // namespace gsl
#define Expects(EXPR) do { if (!(EXPR)) { __builtin_trap(); } } while (0)