Index: src/AST/Print.cpp
===================================================================
--- src/AST/Print.cpp	(revision b9b6efb5368046ebaf333ceef3ec7de4bdbda34d)
+++ src/AST/Print.cpp	(revision fc1a3e283512526d1ddc12898c7c5fa33f0ddeaf)
@@ -1579,11 +1579,11 @@
 		preprint( node );
 		os << "enum attr ";
-        if ( node->attr == ast::EnumAttribute::Label ) {
-            os << "Label ";
-        } else if ( node->attr == ast::EnumAttribute::Value ) {
-            os << "Value ";
-        } else {
-            os << "Posn ";
-        }
+		if ( node->attr == ast::EnumAttribute::Label ) {
+			os << "Label ";
+		} else if ( node->attr == ast::EnumAttribute::Value ) {
+			os << "Value ";
+		} else {
+			os << "Posn ";
+		}
 		(*(node->instance)).accept( *this );
 		return node;
Index: src/AST/Type.hpp
===================================================================
--- src/AST/Type.hpp	(revision b9b6efb5368046ebaf333ceef3ec7de4bdbda34d)
+++ src/AST/Type.hpp	(revision fc1a3e283512526d1ddc12898c7c5fa33f0ddeaf)
@@ -31,5 +31,5 @@
 // Must be included in *all* AST classes; should be #undef'd at the end of the file
 #define MUTATE_FRIEND \
-    template<typename node_t> friend node_t * mutate(const node_t * node); \
+	template<typename node_t> friend node_t * mutate(const node_t * node); \
 	template<typename node_t> friend node_t * shallowCopy(const node_t * node);
 
@@ -322,12 +322,12 @@
 public:
 	readonly<EnumInstType> instance;
-    EnumAttribute attr;
+	EnumAttribute attr;
 	const Type * accept( Visitor & v ) const override { return v.visit( this ); }
 	EnumAttrType( const EnumInstType * instance, EnumAttribute attr = EnumAttribute::Posn )
 		: instance(instance), attr(attr) {}
-	
-    bool match( const ast::EnumAttrType * other) const {
-        return instance->base->name == other->instance->base->name && attr == other->attr;
-    }
+
+	bool match( const ast::EnumAttrType * other) const {
+		return instance->base->name == other->instance->base->name && attr == other->attr;
+	}
 private:
 	EnumAttrType * clone() const override { return new EnumAttrType{ *this }; }
