summaryrefslogtreecommitdiffstats
path: root/util/system/file.h
diff options
context:
space:
mode:
authorbulatman <[email protected]>2023-06-24 00:07:56 +0300
committerbulatman <[email protected]>2023-06-24 00:07:56 +0300
commitc203a40b3ad69fa879519c38e45c641cb2eaee84 (patch)
treeca5d8d612fdc0348c9135386b1dfc142f9f5689e /util/system/file.h
parent234fdc45c2d3c6de987f600acc75563093420730 (diff)
Require semicolon after Y_DECLARE*_FLAGS
Diffstat (limited to 'util/system/file.h')
-rw-r--r--util/system/file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/file.h b/util/system/file.h
index 9502e159b6f..bb42bc7697e 100644
--- a/util/system/file.h
+++ b/util/system/file.h
@@ -49,8 +49,8 @@ enum EOpenModeFlag {
AMask = 0x0FFF0000,
};
-Y_DECLARE_FLAGS(EOpenMode, EOpenModeFlag)
-Y_DECLARE_OPERATORS_FOR_FLAGS(EOpenMode)
+Y_DECLARE_FLAGS(EOpenMode, EOpenModeFlag);
+Y_DECLARE_OPERATORS_FOR_FLAGS(EOpenMode);
TString DecodeOpenMode(ui32 openMode);