diff options
author | bulatman <[email protected]> | 2023-06-24 00:07:56 +0300 |
---|---|---|
committer | bulatman <[email protected]> | 2023-06-24 00:07:56 +0300 |
commit | c203a40b3ad69fa879519c38e45c641cb2eaee84 (patch) | |
tree | ca5d8d612fdc0348c9135386b1dfc142f9f5689e /util/system/filemap.h | |
parent | 234fdc45c2d3c6de987f600acc75563093420730 (diff) |
Require semicolon after Y_DECLARE*_FLAGS
Diffstat (limited to 'util/system/filemap.h')
-rw-r--r-- | util/system/filemap.h | 4 |
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: |