fix: Resolve warnings in multiple components

This commit is contained in:
Daniel Hammer
2025-03-08 00:19:16 +01:00
parent 88f7862a53
commit 04087ff188
5 changed files with 11 additions and 4 deletions
+5
View File
@@ -13,6 +13,11 @@ void* operator new(std::size_t size)
}
void operator delete(void* block)
{
Memory::g_heap->Free(block);
}
void operator delete(void* block, long unsigned int)
{
Memory::g_heap->Free(block);
}
+2
View File
@@ -74,6 +74,8 @@ kcp::cstringstream& kcp::cstringstream::operator<<(uint64_t val) {
kcp::cstringstream& kcp::cstringstream::operator<<(base nb)
{
current_base = nb;
return *this;
}
const char* kcp::cstringstream::cstr() {