aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/trace/trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/trace/trace.h')
-rw-r--r--thirdparty/trace/trace.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/thirdparty/trace/trace.h b/thirdparty/trace/trace.h
index a1fce80a6..0835781ba 100644
--- a/thirdparty/trace/trace.h
+++ b/thirdparty/trace/trace.h
@@ -190,7 +190,7 @@ struct TArray
: public std::vector<T>
{
using Super = std::vector<T>;
- using Super::vector;
+ using Super::Super;
using Super::back;
using Super::begin;
using Super::clear;
@@ -260,7 +260,7 @@ struct TStringViewAdapter
: public std::basic_string_view<T>
{
using Super = std::basic_string_view<T>;
- using Super::basic_string_view;
+ using Super::Super;
using Super::size;
using Super::data;
size_t Len() const { return size(); }
@@ -596,8 +596,8 @@ namespace UE {
namespace Trace {
enum AnsiString {};
enum WideString {};
-template<typename IdType>
-struct TEventRef
+template<typename IdType>
+struct TEventRef
{
using ReferenceType = IdType;
TEventRef(IdType InId, uint32 InTypeId)
@@ -632,7 +632,7 @@ inline uint64 TEventRef<uint64>::GetHash() const
return (uint64(RefTypeId) << 32) ^ Id;
}
typedef TEventRef<uint8> FEventRef8;
-typedef TEventRef<uint16> FEventRef16;
+typedef TEventRef<uint16> FEventRef16;
typedef TEventRef<uint32> FEventRef32;
typedef TEventRef<uint64> FEventRef64;
template<typename IdType>
@@ -653,7 +653,7 @@ struct FChannelInfo;
typedef void* AllocFunc(SIZE_T, uint32);
typedef void FreeFunc(void*, SIZE_T);
typedef void ChannelIterFunc(const ANSICHAR*, bool, void*);
-/* The callback provides information about a channel and a user provided pointer.
+/* The callback provides information about a channel and a user provided pointer.
Returning false from the callback will stop the enumeration */
typedef bool ChannelIterCallback(const FChannelInfo& Info, void*/*User*/);
struct FStatistics
@@ -673,7 +673,7 @@ struct FSendFlags
};
UE_TRACE_API void SetMemoryHooks(AllocFunc Alloc, FreeFunc Free) UE_TRACE_IMPL();
UE_TRACE_API void Initialize(const FInitializeDesc& Desc) UE_TRACE_IMPL();
-UE_TRACE_API void StartWorkerThread() UE_TRACE_IMPL();
+UE_TRACE_API void StartWorkerThread() UE_TRACE_IMPL();
UE_TRACE_API void Shutdown() UE_TRACE_IMPL();
UE_TRACE_API void Update() UE_TRACE_IMPL();
UE_TRACE_API void GetStatistics(FStatistics& Out) UE_TRACE_IMPL();
@@ -718,7 +718,7 @@ struct FChannelInfo
bool bIsEnabled;
bool bIsReadOnly;
};
-typedef void ChannelIterFunc(const ANSICHAR*, bool, void*);
+typedef void ChannelIterFunc(const ANSICHAR*, bool, void*);
typedef bool ChannelIterCallback(const FChannelInfo& OutChannelInfo, void*);
/*
A named channel which can be used to filter trace events. Channels can be
@@ -1277,7 +1277,7 @@ struct FNewEventEvent
struct
{
uint16 Offset;
- uint16 RefUid;
+ uint16 RefUid;
uint8 TypeInfo;
uint8 NameSize;
} Reference;
@@ -2519,7 +2519,7 @@ FChannel* FChannel::FindChannel(const ANSICHAR* ChannelName)
}
return nullptr;
}
-void FChannel::EnumerateChannels(ChannelIterFunc Func, void* User)
+void FChannel::EnumerateChannels(ChannelIterFunc Func, void* User)
{
using namespace Private;
FChannel* ChannelLists[] =
@@ -4985,7 +4985,7 @@ UPTRINT TcpSocketConnect(const ANSICHAR* Host, uint16 Port)
{
struct FAddrInfoPtr
{
- ~FAddrInfoPtr()
+ ~FAddrInfoPtr()
{
if (Value != nullptr)
{