diff options
author | bulatman <[email protected]> | 2023-05-04 10:28:45 +0300 |
---|---|---|
committer | bulatman <[email protected]> | 2023-05-04 10:28:45 +0300 |
commit | 6bccf8a6c51dfc4e563317584ee71ea0637c452a (patch) | |
tree | fd2db9ebc1482d68aacfd1353bfcb8d6243f56a4 /util/generic/va_args.cpp | |
parent | 5a38c255b846d4bdaa221ca12c63d43f98033416 (diff) |
Remove using of extra semicolons in util
Diffstat (limited to 'util/generic/va_args.cpp')
-rw-r--r-- | util/generic/va_args.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/generic/va_args.cpp b/util/generic/va_args.cpp index 2266d05a0dd..c8d74e98de2 100644 --- a/util/generic/va_args.cpp +++ b/util/generic/va_args.cpp @@ -2,14 +2,14 @@ // Test that it compiles #define __DUMMY__(x) -Y_MAP_ARGS(__DUMMY__, 1, 2, 3); +Y_MAP_ARGS(__DUMMY__, 1, 2, 3) #define __DUMMY_LAST__(x) -Y_MAP_ARGS_WITH_LAST(__DUMMY__, __DUMMY_LAST__, 1, 2, 3); +Y_MAP_ARGS_WITH_LAST(__DUMMY__, __DUMMY_LAST__, 1, 2, 3) #undef __DUMMY_LAST__ #undef __DUMMY__ #define __MULTI_DUMMY__(x, y) #define __MULTI_DUMMY_PROXY__(x) __MULTI_DUMMY__ x -Y_MAP_ARGS(__MULTI_DUMMY_PROXY__, (1, 2), (3, 4)); +Y_MAP_ARGS(__MULTI_DUMMY_PROXY__, (1, 2), (3, 4)) #undef __MULTI_DUMMY_PROXY__ #undef __MULTI_DUMMY__ |