From dce2649dafb3988304e461fec5e20730b6a34ea2 Mon Sep 17 00:00:00 2001
From: Alexandre Bouvier <contact@amb.tf>
Date: Mon, 26 Dec 2022 04:26:31 +0000
Subject: [PATCH] tests: add missing header

<cstring> is needed for std::memcpy
---
 src/tests/common/scratch_buffer.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/tests/common/scratch_buffer.cpp b/src/tests/common/scratch_buffer.cpp
index b602c8d0a6..f6e50da4a4 100644
--- a/src/tests/common/scratch_buffer.cpp
+++ b/src/tests/common/scratch_buffer.cpp
@@ -3,6 +3,7 @@
 
 #include <algorithm>
 #include <array>
+#include <cstring>
 #include <span>
 #include <catch2/catch.hpp>
 #include "common/common_types.h"