Implement getCallStackFast/Exact for fast call-stack backtrace.

This commit is contained in:
Бранимир Караџић
2025-09-27 12:51:02 -07:00
parent 59d9249854
commit c8128850f8
9 changed files with 908 additions and 69 deletions

View File

@@ -303,6 +303,12 @@ namespace bx
set(_filePath);
}
FilePath& FilePath::operator=(const char* _rhs)
{
set(_rhs);
return *this;
}
FilePath& FilePath::operator=(const StringView& _rhs)
{
set(_rhs);