From: Kazu Hirata Date: Sun, 30 Oct 2022 20:20:50 +0000 (-0700) Subject: Revert "[ADT] Remove redundaunt typename (NFC)" X-Git-Tag: upstream/17.0.6~29043 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3772cb9ce70be145219c37326c95c59915b4aaf5;p=platform%2Fupstream%2Fllvm.git Revert "[ADT] Remove redundaunt typename (NFC)" This reverts commit 95eaefd0df7564a380f71a6909a5bd6b3ad32ab2. I accidentally committed a patch to add a redundant typename. --- diff --git a/llvm/include/llvm/Support/TypeSize.h b/llvm/include/llvm/Support/TypeSize.h index 3efcdc4..0777005 100644 --- a/llvm/include/llvm/Support/TypeSize.h +++ b/llvm/include/llvm/Support/TypeSize.h @@ -211,7 +211,7 @@ protected: } template - friend typename std::enable_if_t::value, LeafTy> + friend std::enable_if_t::value, LeafTy> operator-(const LeafTy &LHS) { LeafTy Copy = LHS; return Copy *= -1;