diff options
author | tender-bum <[email protected]> | 2022-02-10 16:50:01 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:01 +0300 |
commit | c78b06a63de7beec995c1007bc5332bdf3d75b69 (patch) | |
tree | 729de992758f40b85278d4abaad655be5dd68dbc /util/thread/factory.cpp | |
parent | 95ab23a39b5482a434361566cabdd5b0a433cb43 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/thread/factory.cpp')
-rw-r--r-- | util/thread/factory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/thread/factory.cpp b/util/thread/factory.cpp index 48e898f32dc..50a51680e24 100644 --- a/util/thread/factory.cpp +++ b/util/thread/factory.cpp @@ -66,8 +66,8 @@ namespace { }; } -THolder<IThread> IThreadFactory::Run(std::function<void()> func) { - THolder<IThread> ret(DoCreate()); +THolder<IThread> IThreadFactory::Run(std::function<void()> func) { + THolder<IThread> ret(DoCreate()); ret->Run(new ::TThreadFactoryFuncObj(func)); |