From 5e8b9c95f071ac6e87b5e073264095e7d46a9f6e Mon Sep 17 00:00:00 2001 From: Florian Schmaus <flow@cs.fau.de> Date: Tue, 2 Mar 2021 14:10:38 +0100 Subject: [PATCH] [RwLockUnboundedQueue] Add missing #include "Common.hpp" --- emper/lib/adt/RwLockUnboundedQueue.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emper/lib/adt/RwLockUnboundedQueue.hpp b/emper/lib/adt/RwLockUnboundedQueue.hpp index 0d60254e..8a305b37 100644 --- a/emper/lib/adt/RwLockUnboundedQueue.hpp +++ b/emper/lib/adt/RwLockUnboundedQueue.hpp @@ -7,6 +7,8 @@ #include <cstring> #include <queue> +#include "Common.hpp" + namespace lib::adt { static void aquire_wrlock(pthread_rwlock_t& lock) { -- GitLab