diff options
| author | asorotsky <[email protected]> | 2022-02-10 16:47:33 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:33 +0300 | 
| commit | 80f0a6b4102e3b2c89f23935c7690409033ea24c (patch) | |
| tree | d37ae19cf2360516f71e010c02f3fd8fc6b22999 /library/cpp/threading/chunk_queue | |
| parent | 9f1d4466bb653173233b0e47d2cbda7f46995f92 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/threading/chunk_queue')
| -rw-r--r-- | library/cpp/threading/chunk_queue/queue.h | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/library/cpp/threading/chunk_queue/queue.h b/library/cpp/threading/chunk_queue/queue.h index 55859601a1e..311222e4dca 100644 --- a/library/cpp/threading/chunk_queue/queue.h +++ b/library/cpp/threading/chunk_queue/queue.h @@ -34,14 +34,14 @@ namespace NThreading {              static_assert(sizeof(*this) % PadSize == 0, "padding does not work");              Y_UNUSED(Pad);          } - -        template<typename... Args> -        TPadded(Args&&... args) -            : T(std::forward<Args>(args)...) -        { -            static_assert(sizeof(*this) % PadSize == 0, "padding does not work"); -            Y_UNUSED(Pad); -        } +  +        template<typename... Args>  +        TPadded(Args&&... args)  +            : T(std::forward<Args>(args)...)  +        {  +            static_assert(sizeof(*this) % PadSize == 0, "padding does not work");  +            Y_UNUSED(Pad);  +        }       };      //////////////////////////////////////////////////////////////////////////////// | 
