I have to detour the assert function, but i don't know how to do it. I tried a few things but I don't share it here because it is garbage. i need to change them params.
#include <iostream>
#include <cassert>
int main()
{
assert(2 + 2 == 4);
std::cout << "Execution continues past the first assert\n";
}