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/kconfig.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/kconfig.h')
-rw-r--r-- | src/core/kconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfig.h b/src/core/kconfig.h index ccea1bce..4b652059 100644 --- a/src/core/kconfig.h +++ b/src/core/kconfig.h @@ -86,7 +86,7 @@ public: SimpleConfig = 0x00, ///< Just a single config file. NoCascade = IncludeGlobals, ///< Include user's globals, but omit system settings. NoGlobals = CascadeConfig, ///< Cascade to system settings, but omit user's globals. - FullConfig = IncludeGlobals | CascadeConfig ///< Fully-fledged config, including globals and cascading to system settings + FullConfig = IncludeGlobals | CascadeConfig, ///< Fully-fledged config, including globals and cascading to system settings }; /** * Stores a combination of #OpenFlag values. |