This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] For Adding clang check
- From: Kamlesh Kumar <kamleshbhalui at gmail dot com>
- To: libc-alpha at sourceware dot org
- Date: Fri, 29 Nov 2019 00:17:33 +0530
- Subject: [PATCH] For Adding clang check
ChangeLog :
2019-11-28 Kamlesh Kumar <kamleshbhalui@gmail.com>
* string/string.h (__glibc_clang_prereq): Used.
---
string/string.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/string/string.h b/string/string.h
index 73c22a535a..06a8977165 100644
--- a/string/string.h
+++ b/string/string.h
@@ -33,7 +33,7 @@ __BEGIN_DECLS
#include <stddef.h>
/* Tell the caller that we provide correct C++ prototypes. */
-#if defined __cplusplus && __GNUC_PREREQ (4, 4)
+#if defined __cplusplus && (__GNUC_PREREQ (4, 4) || __glibc_clang_prereq(3,5))
# define __CORRECT_ISO_CPP_STRING_H_PROTO
#endif
--
2.17.1