Skip to content

Commit bf9ece3

Browse files
authored
Remove newline after template
1 parent fb6a46e commit bf9ece3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/ADT/DenseMapInfo.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,7 @@ struct DenseMapInfo<Enum, std::enable_if_t<std::is_enum_v<Enum>>> {
322322
static bool isEqual(const Enum &LHS, const Enum &RHS) { return LHS == RHS; }
323323
};
324324

325-
template <typename T>
326-
struct DenseMapInfo<std::optional<T>> {
325+
template <typename T> struct DenseMapInfo<std::optional<T>> {
327326
using Optional = std::optional<T>;
328327
using Info = DenseMapInfo<T>;
329328

0 commit comments

Comments
 (0)