diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 17:34:03 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 17:34:03 +0200 |
commit | 186755fd56b58dc97250846c5305ef89f9487f86 (patch) | |
tree | 23860a4cf52df11b2c224ba6ea1a8521e5cfb403 /src/core/kconfigbase.h | |
parent | a06ffb355573f3ad7d6ae475685843f18e38f2d4 (diff) | |
download | kconfig-186755fd56b58dc97250846c5305ef89f9487f86.tar.gz kconfig-186755fd56b58dc97250846c5305ef89f9487f86.tar.bz2 |
Add a trailing comma to last member in enum
GIT_SILENT
Diffstat (limited to 'src/core/kconfigbase.h')
-rw-r--r-- | src/core/kconfigbase.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/kconfigbase.h b/src/core/kconfigbase.h index 0682a6b5..a7693275 100644 --- a/src/core/kconfigbase.h +++ b/src/core/kconfigbase.h @@ -54,7 +54,7 @@ public: * Implied persistent * @since 5.51 */ - Normal = Persistent + Normal = Persistent, /**< * Save the entry to the application specific config file without * a locale tag. This is the default. @@ -172,7 +172,11 @@ public: /** * Possible return values for accessMode(). */ - enum AccessMode { NoAccess, ReadOnly, ReadWrite }; + enum AccessMode { + NoAccess, + ReadOnly, + ReadWrite, + }; /** * Returns the access mode of the app-config object. |