- Use #pragma once in EASTL's intrusive_list.h.

This commit is contained in:
Mitchell Richters 2021-12-30 11:16:35 +11:00
parent 50a3089648
commit e06c083c3b

View file

@ -85,7 +85,7 @@
//#include <EASTL/iterator.h>
//#include <EASTL/algorithm.h>
#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