aboutsummaryrefslogtreecommitdiff
path: root/src/core/kconfigbackend_p.h
diff options
context:
space:
mode:
authorAhmad Samir <a.samirh78@gmail.com>2021-02-22 17:34:03 +0200
committerAhmad Samir <a.samirh78@gmail.com>2021-02-22 17:34:03 +0200
commit186755fd56b58dc97250846c5305ef89f9487f86 (patch)
tree23860a4cf52df11b2c224ba6ea1a8521e5cfb403 /src/core/kconfigbackend_p.h
parenta06ffb355573f3ad7d6ae475685843f18e38f2d4 (diff)
downloadkconfig-186755fd56b58dc97250846c5305ef89f9487f86.tar.gz
kconfig-186755fd56b58dc97250846c5305ef89f9487f86.tar.bz2
Add a trailing comma to last member in enum
GIT_SILENT
Diffstat (limited to 'src/core/kconfigbackend_p.h')
-rw-r--r--src/core/kconfigbackend_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/kconfigbackend_p.h b/src/core/kconfigbackend_p.h
index 5f8b61b5..7eb1774e 100644
--- a/src/core/kconfigbackend_p.h
+++ b/src/core/kconfigbackend_p.h
@@ -70,7 +70,7 @@ public:
enum ParseOption {
ParseGlobal = 1, /// entries should be marked as @em global
ParseDefaults = 2, /// entries should be marked as @em default
- ParseExpansions = 4 /// entries are allowed to be marked as @em expandable
+ ParseExpansions = 4, /// entries are allowed to be marked as @em expandable
};
Q_FLAG(ParseOption)
/// @typedef typedef QFlags<ParseOption> ParseOptions
@@ -88,7 +88,7 @@ public:
enum ParseInfo {
ParseOk, /// the configuration was opened read/write
ParseImmutable, /// the configuration is @em immutable
- ParseOpenError /// the configuration could not be opened
+ ParseOpenError, /// the configuration could not be opened
};
/**