From fe9d8cadb9bba9ddc7ea151f779458b8dc1904cd Mon Sep 17 00:00:00 2001 From: Mehdi Bouaziz Date: Thu, 7 Dec 2017 02:57:26 -0800 Subject: [PATCH] Removed dead IsSomeVector Summary: deadcode Reviewed By: ddrcoder Differential Revision: D6498754 fbshipit-source-id: 9dda0ade6928d648b8938a06b185e430753f2318 --- folly/String.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/folly/String.h b/folly/String.h index 6889476b..750863b9 100644 --- a/folly/String.h +++ b/folly/String.h @@ -468,21 +468,6 @@ void splitTo(const Delim& delimiter, * Note that this will likely not work if the last field's target is of numeric * type, in which case folly::to<> will throw an exception. */ -template -struct IsSomeVector { - enum { value = false }; -}; - -template -struct IsSomeVector, void> { - enum { value = true }; -}; - -template -struct IsSomeVector, void> { - enum { value = true }; -}; - template struct IsConvertible { enum { value = false }; -- 2.34.1