diff options
author | vadim-xd <vadim-xd@yandex-team.com> | 2024-08-12 11:31:23 +0300 |
---|---|---|
committer | vadim-xd <vadim-xd@yandex-team.com> | 2024-08-12 11:48:07 +0300 |
commit | 86ba548dfbdadc15084d0a826cd00f3726821a23 (patch) | |
tree | 9a23e70ad059c98a875bd6b9c0af4767d75c6d63 | |
parent | 00a132e24c5a4eded564dc67fe89d90f687491dc (diff) | |
download | ydb-86ba548dfbdadc15084d0a826cd00f3726821a23.tar.gz |
Remove unused include and type alias
e4f1f262610072e05f42e372851b8d192a060351
-rw-r--r-- | util/generic/function.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/util/generic/function.h b/util/generic/function.h index 303bf6504a..75f5422e68 100644 --- a/util/generic/function.h +++ b/util/generic/function.h @@ -1,6 +1,5 @@ #pragma once -#include "typetraits.h" #include "typelist.h" #include <functional> @@ -64,7 +63,6 @@ namespace NPrivate { template <class R, typename... Args> struct TFuncInfo<R(Args...)> { - using TResult = R; typedef R TSignature(Args...); }; } |