From 8ebc45e479b065779b58693fe087b4cd0e428ffb Mon Sep 17 00:00:00 2001 From: xshady <54737754+xxshady@users.noreply.github.com> Date: Fri, 9 Aug 2024 15:48:14 +0300 Subject: [PATCH] fix Order enum naming style --- common/Order.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/Order.h b/common/Order.h index a1211c3..da26485 100644 --- a/common/Order.h +++ b/common/Order.h @@ -7,9 +7,9 @@ namespace common { * Sorting order */ enum class Order { - kDefault = 0, - kAsc = 1, - kDesc = 2, + DEFAULT = 0, + ASC = 1, + DESC = 2, }; } // namespace common