You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
17 lines
267 B
C++
17 lines
267 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Pch.h"
|
|
#include "Asio.h"
|
|
|
|
#if defined(_MSC_VER)
|
|
# include <malloc.h>
|
|
#else
|
|
# include <alloca.h>
|
|
#endif
|
|
|
|
TS_ASIO_INCLUDE_BEGIN
|
|
#include "asio/impl/src.hpp"
|
|
TS_ASIO_INCLUDE_END
|
|
|
|
/* vim: set noexpandtab : */
|