From 186755fd56b58dc97250846c5305ef89f9487f86 Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Mon, 22 Feb 2021 17:34:03 +0200 Subject: Add a trailing comma to last member in enum GIT_SILENT --- autotests/kconfig_compiler/test11_types.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'autotests/kconfig_compiler') diff --git a/autotests/kconfig_compiler/test11_types.h b/autotests/kconfig_compiler/test11_types.h index b6aa5d80..553ae54a 100644 --- a/autotests/kconfig_compiler/test11_types.h +++ b/autotests/kconfig_compiler/test11_types.h @@ -10,7 +10,12 @@ class TimePeriod { public: - enum Units { Minutes, HoursMinutes, Days, Weeks }; + enum Units { + Minutes, + HoursMinutes, + Days, + Weeks, + }; }; #endif -- cgit v1.2.1