[*] Warnings
This commit is contained in:
parent
66c26b9bd2
commit
6632bf6d4e
@ -38,6 +38,12 @@ namespace Aurora::Compression
|
||||
struct DecompressInfo
|
||||
{
|
||||
ECompresionType alg {ECompresionType::eDeflate};
|
||||
|
||||
DecompressInfo(ECompresionType alg) : alg(alg)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
AuUInt32 internalStreamSize {};
|
||||
bool permitResize {};
|
||||
};
|
||||
|
@ -30,7 +30,6 @@ namespace Aurora::Debug
|
||||
char buffer[sizeof(SYMBOL_INFO) + (MAX_SYM_NAME + 1) * sizeof(char)] = { 0 };
|
||||
AuString backTraceBuffer;
|
||||
HMODULE hModule;
|
||||
DWORD disp;
|
||||
DWORD64 displacement = 0;
|
||||
HANDLE process = GetCurrentProcess();
|
||||
STACKFRAME64 stack = { 0 };
|
||||
|
@ -97,7 +97,7 @@ namespace Aurora::Locale::Encoding
|
||||
reinterpret_cast<char *>(out) + outLen,
|
||||
toNext);
|
||||
|
||||
return {(fromNext - reinterpret_cast<const charin_t *>(in)) * sizeof(charin_t), toNext - out};
|
||||
return {(fromNext - reinterpret_cast<const charin_t *>(in)) * sizeof(charin_t), toNext - (char *)out};
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user