From 0006ca6b7c037fc5fb5d0ea87ad6901d6230fbc1 Mon Sep 17 00:00:00 2001 From: Andrey Saranchin Date: Wed, 31 Jan 2024 00:51:55 +0300 Subject: [PATCH] test: include missing string.h header in System.hpp The header contains strerror definition used in this file. Along the way, the headers in System.hpp are sorted. --- test/Utils/System.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/Utils/System.hpp b/test/Utils/System.hpp index 43e2405e4..72d20b586 100644 --- a/test/Utils/System.hpp +++ b/test/Utils/System.hpp @@ -31,12 +31,13 @@ */ #include #include -#include +#include #include #include -#include +#include #include -#include +#include +#include #ifdef __linux__ #include #endif