diff options
author | bulatman <bulatman@yandex-team.com> | 2023-05-04 10:28:45 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-05-04 10:28:45 +0300 |
commit | 6bccf8a6c51dfc4e563317584ee71ea0637c452a (patch) | |
tree | fd2db9ebc1482d68aacfd1353bfcb8d6243f56a4 /util/system | |
parent | 5a38c255b846d4bdaa221ca12c63d43f98033416 (diff) | |
download | ydb-6bccf8a6c51dfc4e563317584ee71ea0637c452a.tar.gz |
Remove using of extra semicolons in util
Diffstat (limited to 'util/system')
-rw-r--r-- | util/system/compiler.h | 2 | ||||
-rw-r--r-- | util/system/fs.h | 2 | ||||
-rw-r--r-- | util/system/sanitizers.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/util/system/compiler.h b/util/system/compiler.h index 5542d462b70..29a97988521 100644 --- a/util/system/compiler.h +++ b/util/system/compiler.h @@ -206,7 +206,7 @@ template <class... Types> constexpr Y_FORCE_INLINE int Y_UNUSED(Types&&...) { return 0; -}; +} #endif /** diff --git a/util/system/fs.h b/util/system/fs.h index af336641022..4c1951b2502 100644 --- a/util/system/fs.h +++ b/util/system/fs.h @@ -21,7 +21,7 @@ namespace NFs { FP_NONSECRET_FILE = 0744, }; - Y_DECLARE_FLAGS(EFilePermissions, EFilePermission); + Y_DECLARE_FLAGS(EFilePermissions, EFilePermission) /// Remove a file or empty directory /// diff --git a/util/system/sanitizers.h b/util/system/sanitizers.h index 3ff42ca15e2..f0d31244966 100644 --- a/util/system/sanitizers.h +++ b/util/system/sanitizers.h @@ -19,7 +19,7 @@ extern "C" { // sanitizers API void __tsan_release(void* a); #endif -}; // sanitizers API +} // sanitizers API namespace NSan { class TFiberContext { |