#pragma section-numbers off #pragma camelcase off = SDL_ClearError = Use this function to clear any previous error message. <> == Syntax == {{{#!highlight cpp void SDL_ClearError(void) }}} == Code Examples == {{{#!highlight cpp const char *error = SDL_GetError(); if (*error) { SDL_Log("SDL error: %s", error); SDL_ClearError(); } }}} == Remarks == ''You can add useful comments here'' == Related Functions == .[[SDL_GetError]] .[[SDL_SetError]] ---- [[CategoryAPI]], [[CategoryError]]