svn commit: r367099 - head

Alex Richardson arichardson at FreeBSD.org
Wed Oct 28 11:53:55 UTC 2020


Author: arichardson
Date: Wed Oct 28 11:53:55 2020
New Revision: 367099
URL: https://svnweb.freebsd.org/changeset/base/367099

Log:
  clang-format: place sys/systm.h immediately after sys/param.h
  
  Should fix one of the objections to r366993.
  See also https://reviews.freebsd.org/D26981.
  
  Reviewed By:	emaste
  Differential Revision: https://reviews.freebsd.org/D26979

Modified:
  head/.clang-format   (contents, props changed)

Modified: head/.clang-format
==============================================================================
--- head/.clang-format	Wed Oct 28 11:40:10 2020	(r367098)
+++ head/.clang-format	Wed Oct 28 11:53:55 2020	(r367099)
@@ -102,9 +102,12 @@ IncludeCategories:
   - Regex: '^<sys/param\.h>'
     Priority: 2
     SortPriority: 22
-  - Regex: '^<sys.*/'
+  - Regex: '^<sys/systm\.h>'
     Priority: 2
     SortPriority: 23
+  - Regex: '^<sys.*/'
+    Priority: 2
+    SortPriority: 24
   - Regex: '^<vm/vm\.h>'
     Priority: 3
     SortPriority: 30


More information about the svn-src-all mailing list