diff options
author | tobo <tobo@yandex-team.com> | 2022-08-05 15:14:53 +0300 |
---|---|---|
committer | tobo <tobo@yandex-team.com> | 2022-08-05 15:14:53 +0300 |
commit | 926b1b3913a04b77d6d73f27995a3c0a71a81c03 (patch) | |
tree | 08e3c7fad10cf86daf7c1a551634475c0e061e19 | |
parent | 76482e2669b58f7b8485ab95b13e23b1d162207b (diff) | |
download | ydb-926b1b3913a04b77d6d73f27995a3c0a71a81c03.tar.gz |
remove unused struct
-rw-r--r-- | library/cpp/cgiparam/cgiparam.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/library/cpp/cgiparam/cgiparam.h b/library/cpp/cgiparam/cgiparam.h index ec0bd174647..9fcff402eb5 100644 --- a/library/cpp/cgiparam/cgiparam.h +++ b/library/cpp/cgiparam/cgiparam.h @@ -9,13 +9,6 @@ #include <initializer_list> -struct TStringLess { - template <class T1, class T2> - inline bool operator()(const T1& t1, const T2& t2) const noexcept { - return TStringBuf(t1) < TStringBuf(t2); - } -}; - class TCgiParameters: public TMultiMap<TString, TString> { public: TCgiParameters() = default; |