/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/Foundation/Platform/NoImpl/GuardedAllocation_NoImpl.h
20 строк
475 B
Ingrater
Implement ez_enable_strict_warnings cmake function for clang (#1185)
28 янв 2024, 15:01
Не верифицирован
28 янв 2024, 15:01
9157932
Код
Авторство
О чём код?
#include <Foundation/Memory/Policies/AllocPolicyGuarding.h> ezAllocPolicyGuarding::ezAllocPolicyGuarding(ezAllocator* pParent) { EZ_ASSERT_NOT_IMPLEMENTED; EZ_IGNORE_UNUSED(m_uiPageSize); EZ_IGNORE_UNUSED(m_Mutex); EZ_IGNORE_UNUSED(m_AllocationsToFreeLater); } void* ezAllocPolicyGuarding::Allocate(size_t uiSize, size_t uiAlign) { EZ_ASSERT_NOT_IMPLEMENTED; return nullptr; } void ezAllocPolicyGuarding::Deallocate(void* ptr) { EZ_ASSERT_NOT_IMPLEMENTED; }