diff options
author | Miguel Ojeda | 2022-05-20 14:06:51 +0200 |
---|---|---|
committer | Miguel Ojeda | 2022-05-20 14:06:51 +0200 |
commit | 72e14aa9f884807e7059254a0373929b09ab56ad (patch) | |
tree | 5132c62affd9e37e6a6b9e137513b7592a9e9196 /.clang-format | |
parent | 43120879191cb3b13e30e3fadd424bc5bbcf7846 (diff) |
clang-format: Simplify command with `sort -u`
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format index 59f6a027b1c1..beb40ea81596 100644 --- a/.clang-format +++ b/.clang-format @@ -67,7 +67,7 @@ ExperimentalAutoDetectBinPacking: false # Taken from: # git grep -h '^#define [^[:space:]]*for_each[^[:space:]]*(' include/ \ # | sed "s,^#define \([^[:space:]]*for_each[^[:space:]]*\)(.*$, - '\1'," \ -# | LC_ALL=C sort | uniq +# | LC_ALL=C sort -u ForEachMacros: - '__ata_qc_for_each' - '__bio_for_each_bvec' |