From 021f596cf00ffe397c92cdf5b0b005ddbd37be89 Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Thu, 2 Apr 2015 21:58:41 -0700 Subject: [PATCH] Remove enable_if_t. --- include/tins/internals.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/tins/internals.h b/include/tins/internals.h index 5bf8211..6eab10d 100644 --- a/include/tins/internals.h +++ b/include/tins/internals.h @@ -207,10 +207,6 @@ struct is_unsigned_integral { #if TINS_IS_CXX11 -// Part of C++14 standard library -template -using enable_if_t = typename std::enable_if::type; - // Template metaprogramming trait to determine if a functor can accept another parameter as an argument template struct accepts_type : std::false_type { };