Add decoding stack trace function names on Apple platforms

This commit is contained in:
Wojtek Figat
2023-11-19 18:04:24 +01:00
parent 389bf89e2a
commit 4e190c2e3c
3 changed files with 43 additions and 7 deletions

View File

@@ -3,6 +3,7 @@
#pragma once
#include "String.h"
#include "StringView.h"
#include "Engine/Core/Collections/Array.h"
/// <summary>
@@ -138,6 +139,11 @@ public:
_data.Add(*str, str.Length());
return *this;
}
StringBuilder& Append(const StringView& str)
{
_data.Add(*str, str.Length());
return *this;
}
// Append int to the string
// @param val Value to append