diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 19:25:40 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 21:28:00 +0200 |
commit | 48c132be8aa983165126b0641a083848dd5c6620 (patch) | |
tree | e86e514536a914c09c8e83c12d0ad46a369a86d2 /src/core/kconfigdata.h | |
parent | 8bed00ab34e31f2b9c70026d418d923913325798 (diff) | |
download | kconfig-48c132be8aa983165126b0641a083848dd5c6620.tar.gz kconfig-48c132be8aa983165126b0641a083848dd5c6620.tar.bz2 |
Fix formatting in a couple of places after running clang-format
NO_CHANGELOG
Diffstat (limited to 'src/core/kconfigdata.h')
-rw-r--r-- | src/core/kconfigdata.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/kconfigdata.h b/src/core/kconfigdata.h index bb9ee717..afa18877 100644 --- a/src/core/kconfigdata.h +++ b/src/core/kconfigdata.h @@ -79,7 +79,13 @@ struct KEntry { // omits the dirty/notify flag from the comparison. inline bool operator==(const KEntry &k1, const KEntry &k2) { - return k1.bGlobal == k2.bGlobal && k1.bImmutable == k2.bImmutable && k1.bDeleted == k2.bDeleted && k1.bExpand == k2.bExpand && k1.mValue == k2.mValue; + /* clang-format off */ + return k1.bGlobal == k2.bGlobal + && k1.bImmutable == k2.bImmutable + && k1.bDeleted == k2.bDeleted + && k1.bExpand == k2.bExpand + && k1.mValue == k2.mValue; + /* clang-format on */ } inline bool operator!=(const KEntry &k1, const KEntry &k2) |