[ADT] Use std::conditional_t (NFC)
authorKazu Hirata <kazu@google.com>
Mon, 26 Sep 2022 06:14:13 +0000 (23:14 -0700)
committerKazu Hirata <kazu@google.com>
Mon, 26 Sep 2022 06:14:13 +0000 (23:14 -0700)
llvm/include/llvm/ADT/SmallVector.h

index 14f051e..513fce9 100644 (file)
@@ -468,8 +468,7 @@ protected:
 
   /// Either const T& or T, depending on whether it's cheap enough to take
   /// parameters by value.
-  using ValueParamT =
-      typename std::conditional<TakesParamByValue, T, const T &>::type;
+  using ValueParamT = std::conditional_t<TakesParamByValue, T, const T &>;
 
   SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}