From 6baae925532a8e3fb557fd07273063c306e5bc5b Mon Sep 17 00:00:00 2001 From: Nik Date: Fri, 4 Aug 2023 22:56:03 +0200 Subject: [PATCH] includes/std: Added missing mem library include in ptr libary --- includes/std/ptr.pat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/std/ptr.pat b/includes/std/ptr.pat index bc32bf0..2816ed5 100644 --- a/includes/std/ptr.pat +++ b/includes/std/ptr.pat @@ -1,5 +1,7 @@ #pragma once +#include + /*! The Pointer library contains helper functions to deal with pointer types. The `relative_to` functions are meant to be used with the `[[pointer_base]]` attribute @@ -64,4 +66,4 @@ namespace std::ptr { PointeeTy *data : PointerTy; } }; -} \ No newline at end of file +}