aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/flags.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'util/generic/flags.cpp')
-rw-r--r--util/generic/flags.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/util/generic/flags.cpp b/util/generic/flags.cpp
index 2ee52188a0..3fd1f2b272 100644
--- a/util/generic/flags.cpp
+++ b/util/generic/flags.cpp
@@ -1,14 +1,14 @@
-#include "flags.h"
-
-#include <util/stream/format.h>
-#include <util/system/yassert.h>
-
+#include "flags.h"
+
+#include <util/stream/format.h>
+#include <util/system/yassert.h>
+
void ::NPrivate::PrintFlags(IOutputStream& stream, ui64 value, size_t size) {
- /* Note that this function is in cpp because we need to break circular
- * dependency between TFlags and ENumberFormat. */
- stream << "TFlags(";
-
- switch (size) {
+ /* Note that this function is in cpp because we need to break circular
+ * dependency between TFlags and ENumberFormat. */
+ stream << "TFlags(";
+
+ switch (size) {
case 1:
stream << Bin(static_cast<ui8>(value), HF_FULL);
break;
@@ -23,7 +23,7 @@ void ::NPrivate::PrintFlags(IOutputStream& stream, ui64 value, size_t size) {
break;
default:
Y_VERIFY(false);
- }
-
- stream << ")";
-}
+ }
+
+ stream << ")";
+}