From 51675a881b0a2f60920fdf5a7ba2989523d9b3d2 Mon Sep 17 00:00:00 2001 From: Jonathan Ketchker Date: Fri, 19 Jan 2024 23:45:21 +0200 Subject: [PATCH] Fix code style - add missing trailing comma For better consistency and git changes tracking add trailing comma at the end of the last value of an enum. See also code-review at: https://codereview.qt-project.org /c/qt/qtbase/+/528392/comment/663ba25a_51ed514b/ Change-Id: Ibcfcfb1ba1a8ba4b59297bf17103181a0ee6eafc Reviewed-by: Thiago Macieira (cherry picked from commit afa6cbed649add8abcef7f07e97e83b16983ff16) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/io/qstandardpaths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/io/qstandardpaths.h b/src/corelib/io/qstandardpaths.h index 3997957d254..56aa2b100c2 100644 --- a/src/corelib/io/qstandardpaths.h +++ b/src/corelib/io/qstandardpaths.h @@ -40,7 +40,7 @@ public: PublicShareLocation, TemplatesLocation, StateLocation, - GenericStateLocation + GenericStateLocation, }; Q_ENUM(StandardLocation)