aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/core/hfunc.h
diff options
context:
space:
mode:
authorArtem Zuikov <chertus@gmail.com>2022-02-10 16:46:27 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:27 +0300
commitd23c9e2333524245de2f721e04136f51c31411ef (patch)
tree841eba1726e3db80e41401053939b3f5ef86ab2d /library/cpp/actors/core/hfunc.h
parent6f0f263753da4db2175d8b66d02619f6a476d319 (diff)
downloadydb-d23c9e2333524245de2f721e04136f51c31411ef.tar.gz
Restoring authorship annotation for Artem Zuikov <chertus@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/core/hfunc.h')
-rw-r--r--library/cpp/actors/core/hfunc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/actors/core/hfunc.h b/library/cpp/actors/core/hfunc.h
index 26f3c65013..7ffb0435ff 100644
--- a/library/cpp/actors/core/hfunc.h
+++ b/library/cpp/actors/core/hfunc.h
@@ -4,7 +4,7 @@
#include "executor_thread.h"
#include <util/system/defaults.h>
-
+
#define HFunc(TEvType, HandleFunc) \
case TEvType::EventType: { \
typename TEvType::TPtr* x = reinterpret_cast<typename TEvType::TPtr*>(&ev); \
@@ -25,8 +25,8 @@
TEvType::TPtr* x = reinterpret_cast<TEvType::TPtr*>(&ev); \
HandleFunc(*x, ctx); \
break; \
- }
-
+ }
+
#define hFuncTraced(TEvType, HandleFunc) \
case TEvType::EventType: { \
TRACE_EVENT_TYPE(Y_STRINGIZE(TEvType)); \