From 21a0b99eaca5609e3adbe8bdf7adba56072b0d3e Mon Sep 17 00:00:00 2001 From: Nik Date: Sat, 29 Jun 2024 23:25:58 +0200 Subject: [PATCH] includes/std: Added missing string include to std::mem --- includes/std/mem.pat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/std/mem.pat b/includes/std/mem.pat index c519a42..f427342 100644 --- a/includes/std/mem.pat +++ b/includes/std/mem.pat @@ -1,5 +1,7 @@ #pragma once +import std.string; + /*! Library for doing raw memory accesses and other low-level operations. */