From 374a42466ee4e9d0a25ef65f73b84e3c870d6f79 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Fri, 9 Jun 2017 10:58:34 +0800 Subject: Fix use of hard tabs --- src/hir/type.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/hir/type.hpp') diff --git a/src/hir/type.hpp b/src/hir/type.hpp index a832e8e9..cc0894d2 100644 --- a/src/hir/type.hpp +++ b/src/hir/type.hpp @@ -178,8 +178,8 @@ public: Data m_data; TypeRef(): - m_data(Data::make_Infer({ ~0u, InferClass::None })) - {} + m_data(Data::make_Infer({ ~0u, InferClass::None })) + {} TypeRef(TypeRef&& ) = default; TypeRef(const TypeRef& ) = delete; TypeRef& operator=(TypeRef&& ) = default; @@ -212,9 +212,9 @@ public: static TypeRef new_diverge() { return TypeRef(Data::make_Diverge({})); } - static TypeRef new_infer(unsigned int idx = ~0u, InferClass ty_class = InferClass::None) { - return TypeRef(Data::make_Infer({idx, ty_class})); - } + static TypeRef new_infer(unsigned int idx = ~0u, InferClass ty_class = InferClass::None) { + return TypeRef(Data::make_Infer({idx, ty_class})); + } static TypeRef new_borrow(BorrowType bt, TypeRef inner) { return TypeRef(Data::make_Borrow({bt, box$(mv$(inner))})); } -- cgit v1.2.3