Files
UnrealEngineUWP/Engine/Source/Developer/TraceAnalysis/Private/Asio/Asio.cpp
Stefan Boberg 55a8b15f1f Copying //UE4/Dev-Core to Main (//UE4/Main)
#rb none

[CL 11258477 by Stefan Boberg in Main branch]
2020-02-05 14:26:36 -05: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