[DiscordArchive] What does line 78 of the errors.h file say?
[DiscordArchive] What does line 78 of the errors.h file say?
Archived author: M'Dic • Posted: 2020-12-25T22:52:21.926000+00:00
Original source
What does line 78 of the errors.h file say?
Archived author: M'Dic • Posted: 2020-12-25T22:52:40.796000+00:00
Original source
That will give u the reason why it will hit that
Archived author: Nerc • Posted: 2020-12-25T23:18:09.166000+00:00
Original source
```c++
template <typename T>
inline T* ASSERT_NOTNULL_IMPL(T* pointer, char const* expr)
{
ASSERT(pointer, "%s", expr);
return pointer;
}```