From b0493e0f6b165b5c88925bea2b83dda54793e87c Mon Sep 17 00:00:00 2001 From: Vikram Dattu Date: Wed, 29 Nov 2023 11:28:45 +0530 Subject: [PATCH] fix(docs): fixed doxygen warnings in few headers - non-matching arguments in `i2c_types.h` and `esp_wifi_crypto_types.h` - Fixed unended `@cond` macro in `esp_err.h` --- components/esp_common/include/esp_err.h | 1 - 1 file changed, 1 deletion(-) diff --git a/components/esp_common/include/esp_err.h b/components/esp_common/include/esp_err.h index d6b2e301d2..ac66e0c335 100644 --- a/components/esp_common/include/esp_err.h +++ b/components/esp_common/include/esp_err.h @@ -78,7 +78,6 @@ const char *esp_err_to_name_r(esp_err_t code, char *buf, size_t buflen); /** @cond */ void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const char *expression) __attribute__((__noreturn__)); -/** @cond */ void _esp_error_check_failed_without_abort(esp_err_t rc, const char *file, int line, const char *function, const char *expression); #ifndef __ASSERT_FUNC