From a9de7a738f8e6f6b3273ced4162fd6144f53af18 Mon Sep 17 00:00:00 2001 From: Levi Behunin Date: Sat, 23 Oct 2021 02:27:10 -0600 Subject: [PATCH] Forgot warning push --- src/common/atomic_threadsafe_queue.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/atomic_threadsafe_queue.h b/src/common/atomic_threadsafe_queue.h index 4350266f01..d2208013b5 100644 --- a/src/common/atomic_threadsafe_queue.h +++ b/src/common/atomic_threadsafe_queue.h @@ -22,6 +22,7 @@ SOFTWARE. #pragma once #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4324) #endif @@ -236,4 +237,4 @@ using MPMCQueue = mpmc::Queue; #ifdef _MSC_VER #pragma warning(pop) -#endif \ No newline at end of file +#endif