From 6e6c4500d6c0e06fc4930669f26465cefce68a05 Mon Sep 17 00:00:00 2001 From: Kareem Date: Fri, 27 May 2022 11:01:29 -0700 Subject: [PATCH] Fix comments in asn1.h to use ANSI C style. --- wolfssl/openssl/asn1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfssl/openssl/asn1.h b/wolfssl/openssl/asn1.h index fc7345308..9eab1a255 100644 --- a/wolfssl/openssl/asn1.h +++ b/wolfssl/openssl/asn1.h @@ -164,7 +164,7 @@ WOLFSSL_API int wolfSSL_ASN1_item_i2d(const void *src, byte **dest, const WOLFSSL_ASN1_ITEM *tpl); /* Need function declaration otherwise compiler complains */ -// NOLINTBEGIN(readability-named-parameter) +/* NOLINTBEGIN(readability-named-parameter) */ #define IMPLEMENT_ASN1_FUNCTIONS(type) \ type *type##_new(void); \ type *type##_new(void){ \ @@ -179,7 +179,7 @@ WOLFSSL_API int wolfSSL_ASN1_item_i2d(const void *src, byte **dest, { \ return wolfSSL_ASN1_item_i2d(src, dest, &type##_template_data);\ } -// NOLINTEND(readability-named-parameter) +/* NOLINTEND(readability-named-parameter) */ #endif /* OPENSSL_ALL */