aboutsummaryrefslogtreecommitdiffstats
path: root/util/thread
diff options
context:
space:
mode:
authoriseg <iseg@yandex-team.ru>2022-02-10 16:49:39 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:39 +0300
commitf828a15ab90e9ca8e848f83caf95c95f06be46e7 (patch)
treede25241f7ec727b05ff1e5b9e1336f567f788a44 /util/thread
parent8124e2bb214b063687e0d77c900150c727e16782 (diff)
downloadydb-f828a15ab90e9ca8e848f83caf95c95f06be46e7.tar.gz
Restoring authorship annotation for <iseg@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/thread')
-rw-r--r--util/thread/pool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/thread/pool.h b/util/thread/pool.h
index d1ea3a67cb..d7d9202cd8 100644
--- a/util/thread/pool.h
+++ b/util/thread/pool.h
@@ -9,7 +9,7 @@
#include <util/generic/ptr.h>
#include <util/generic/noncopyable.h>
#include <functional>
-
+
class TDuration;
struct IObjectInQueue {
@@ -25,8 +25,8 @@ struct IObjectInQueue {
* parameter.
*/
virtual void Process(void* threadSpecificResource) = 0;
-};
-
+};
+
/**
* Mighty class to add 'Pool' method to derived classes.
* Useful only for creators of new queue classes.