Files
UnrealEngine/Engine/Source/Developer/TraceAnalysis/Private/Asio/Asio.cpp
2025-05-18 13:04:45 +08:00

36 lines
730 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Asio.h"
#include "HAL/Platform.h"
#include "Misc/AssertionMacros.h"
#if PLATFORM_WINDOWS
# include "Windows/AllowWindowsPlatformTypes.h"
# include "Windows/AllowWindowsPlatformAtomics.h"
#endif
#if defined(_MSC_VER)
# pragma warning(push)
# pragma warning(disable : 4191)
# if defined(_PREFAST_)
# include <CodeAnalysis/Warnings.h>
# pragma warning(disable : ALL_CODE_ANALYSIS_WARNINGS)
# endif
#endif
THIRD_PARTY_INCLUDES_START
#include "asio/impl/src.hpp"
THIRD_PARTY_INCLUDES_END
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
#if PLATFORM_WINDOWS
# include "Windows/HideWindowsPlatformAtomics.h"
# include "Windows/HideWindowsPlatformTypes.h"
#endif