Date: Wed, 28 Oct 2020 11:53:55 +0000 (UTC) From: Alex Richardson <arichardson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r367099 - head Message-ID: <202010281153.09SBrtXm097170@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010281153.09SBrtXm097170>