Missing Future/SemiFuture->Value conversion check
[folly.git] / folly / futures / Future-pre.h
index 26d9c7c6bb99316d4a0af3aa139267b845061ea6..82a8684cbfc468ae512a4857b1c4fc6b2ba4189f 100644 (file)
@@ -35,11 +35,6 @@ struct isSemiFuture<SemiFuture<T>> : std::true_type {
   typedef T Inner;
 };
 
-template <typename T>
-struct isSemiFuture<Future<T>> : std::true_type {
-  typedef T Inner;
-};
-
 template <typename T>
 struct isFuture : std::false_type {
   using Inner = typename Unit::Lift<T>::type;