summaryrefslogtreecommitdiffstats
path: root/util/system/filemap.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/filemap.h
parent234fdc45c2d3c6de987f600acc75563093420730 (diff)
Require semicolon after Y_DECLARE*_FLAGS
Diffstat (limited to 'util/system/filemap.h')
-rw-r--r--util/system/filemap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/filemap.h b/util/system/filemap.h
index f66b70c96c3..933d169adb7 100644
--- a/util/system/filemap.h
+++ b/util/system/filemap.h
@@ -58,7 +58,7 @@ struct TMemoryMapCommon {
oPrecharge = 16,
oPopulate = 32, // Populate page table entries (see mmap's MAP_POPULATE)
};
- Y_DECLARE_FLAGS(EOpenMode, EOpenModeFlag)
+ Y_DECLARE_FLAGS(EOpenMode, EOpenModeFlag);
/**
* Name that will be printed in exceptions if not specified.
@@ -66,7 +66,7 @@ struct TMemoryMapCommon {
*/
static const TString& UnknownFileName();
};
-Y_DECLARE_OPERATORS_FOR_FLAGS(TMemoryMapCommon::EOpenMode)
+Y_DECLARE_OPERATORS_FOR_FLAGS(TMemoryMapCommon::EOpenMode);
class TMemoryMap: public TMemoryMapCommon {
public: