We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04336da commit 7cc0494Copy full SHA for 7cc0494
llvm/include/llvm/ADT/STLExtras.h
@@ -1295,8 +1295,7 @@ namespace detail {
1295
/// always be a reference, to avoid returning a reference to a temporary.
1296
template <typename EltTy, typename FirstTy> class first_or_second_type {
1297
public:
1298
- using type =
1299
- typename std::conditional_t<std::is_reference<EltTy>::value, FirstTy,
+ using type = std::conditional_t<std::is_reference<EltTy>::value, FirstTy,
1300
std::remove_reference_t<FirstTy>>;
1301
};
1302
} // end namespace detail
0 commit comments