logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_ResetAssertionReport - Clear the list of all assertion failures.

Availability

       This function is available since SDL 3.2.0.

Description

       This  function  will  clear  the list of all assertions triggered up to that point. Immediately following
       this call, SDL_GetAssertionReport will return no items. In addition, any previously-triggered  assertions
       will be reset to a trigger_count of zero, and their always_ignore state will be false.

Name

       SDL_ResetAssertionReport - Clear the list of all assertion failures.

See Also

SDL_GetAssertionReport(3)

Simple Directmedia Layer                           SDL 3.2.20                        SDL_ResetAssertionReport(3)

Synopsis

#include<SDL3/SDL_assert.h>voidSDL_ResetAssertionReport(void);

Thread Safety

       This  function  is not thread safe. Other threads triggering an assertion, or simultaneously calling this
       function may cause memory leaks or crashes.

See Also