From e06c083c3b80c9c1a75707380e1f3ca5aeab85b4 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 30 Dec 2021 11:16:35 +1100 Subject: [PATCH] - Use `#pragma once` in EASTL's `intrusive_list.h`. --- source/thirdparty/include/intrusive_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/thirdparty/include/intrusive_list.h b/source/thirdparty/include/intrusive_list.h index 85d574fa9..29f45dabc 100644 --- a/source/thirdparty/include/intrusive_list.h +++ b/source/thirdparty/include/intrusive_list.h @@ -85,7 +85,7 @@ //#include //#include -#if defined(EA_PRAGMA_ONCE_SUPPORTED) +#if 1 //defined(EA_PRAGMA_ONCE_SUPPORTED) #pragma once // Some compilers (e.g. VC++) benefit significantly from using this. We've measured 3-4% build speed improvements in apps as a result. #endif