From 5414d97cbdcb5a0f881a687e1694d409cc3f0c0e Mon Sep 17 00:00:00 2001 From: Adam Glustein Date: Mon, 7 Oct 2024 15:25:18 -0400 Subject: [PATCH] Remove CSP_PUBLIC from SRMWLockFreeQueue Signed-off-by: Adam Glustein --- cpp/csp/core/SRMWLockFreeQueue.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cpp/csp/core/SRMWLockFreeQueue.h b/cpp/csp/core/SRMWLockFreeQueue.h index 23a05592b..902c8a364 100644 --- a/cpp/csp/core/SRMWLockFreeQueue.h +++ b/cpp/csp/core/SRMWLockFreeQueue.h @@ -1,7 +1,6 @@ #ifndef _IN_CSP_CORE_SRMWLOCKFREEQUEUE_H #define _IN_CSP_CORE_SRMWLOCKFREEQUEUE_H -#include #include #include #include @@ -15,7 +14,7 @@ namespace csp one of the simplest! template type is required to have an intrinsic next pointer */ template< typename T > -class alignas(CACHELINE_SIZE) CSP_PUBLIC SRMWLockFreeQueue +class alignas(CACHELINE_SIZE) SRMWLockFreeQueue { public: class Batch