aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfigtest.h
diff options
context:
space:
mode:
authorAhmad Samir <a.samirh78@gmail.com>2021-02-22 17:38:09 +0200
committerAhmad Samir <a.samirh78@gmail.com>2021-02-22 17:38:09 +0200
commit8bed00ab34e31f2b9c70026d418d923913325798 (patch)
treef289c15575415a36bc19c047a2037998e9b11ce8 /autotests/kconfigtest.h
parent186755fd56b58dc97250846c5305ef89f9487f86 (diff)
downloadkconfig-8bed00ab34e31f2b9c70026d418d923913325798.tar.gz
kconfig-8bed00ab34e31f2b9c70026d418d923913325798.tar.bz2
Run clang-format on all cpp/h files
NO_CHANGELOG
Diffstat (limited to 'autotests/kconfigtest.h')
-rw-r--r--autotests/kconfigtest.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/autotests/kconfigtest.h b/autotests/kconfigtest.h
index cb6e3712..d6502331 100644
--- a/autotests/kconfigtest.h
+++ b/autotests/kconfigtest.h
@@ -14,9 +14,18 @@ class KConfigTest : public QObject
Q_OBJECT
public:
- enum Testing { Ones = 1, Tens = 10, Hundreds = 100,};
+ enum Testing {
+ Ones = 1,
+ Tens = 10,
+ Hundreds = 100,
+ };
Q_ENUM(Testing)
- enum bits { bit0 = 1, bit1 = 2, bit2 = 4, bit3 = 8, };
+ enum bits {
+ bit0 = 1,
+ bit1 = 2,
+ bit2 = 4,
+ bit3 = 8,
+ };
Q_DECLARE_FLAGS(Flags, bits)
Q_FLAG(Flags)