[libc-commits] [PATCH] D110562: Test diff, please ignore. Trying for a third time!

CJ Johnson via Phabricator via libc-commits libc-commits at lists.llvm.org
Mon Sep 27 09:25:37 PDT 2021


CJ-Johnson updated this revision to Diff 375300.
CJ-Johnson added a comment.

Now with code! Will it run the tests?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110562/new/

https://reviews.llvm.org/D110562

Files:
  libc/docs/clang_tidy_checks.rst
  libc/src/ctype/isascii.h


Index: libc/src/ctype/isascii.h
===================================================================
--- libc/src/ctype/isascii.h
+++ libc/src/ctype/isascii.h
@@ -13,7 +13,7 @@
 
 namespace __llvm_libc {
 
-int isascii(int c);
+int isascii(int);
 
 } // namespace __llvm_libc
 
Index: libc/docs/clang_tidy_checks.rst
===================================================================
--- libc/docs/clang_tidy_checks.rst
+++ libc/docs/clang_tidy_checks.rst
@@ -14,8 +14,14 @@
 standard outlines function prototypes and behaviors but doesn’t define
 underlying implementation details such as the layout of a struct.
 
-This check prevents accidental inclusion of system libc headers when writing a
-libc implementation.
+Extra
+
+To
+
+Visualize
+
+This check prevents accidental inclusion of system libc headers when writing an
+llvm-libc implementation.
 
 .. code-block:: c++
 
@@ -67,6 +73,8 @@
 This check ensures any function call resolves to a function within the
 __llvm_libc namespace.
 
+To
+
 .. code-block:: c++
 
     namespace __llvm_libc {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110562.375300.patch
Type: text/x-patch
Size: 1055 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210927/3fd6d2f2/attachment-0001.bin>


More information about the libc-commits mailing list