Index: src/ControlStruct/ExceptDeclNew.cpp
===================================================================
--- src/ControlStruct/ExceptDeclNew.cpp	(revision 7156c4625396b8f213fc70c1542b6f431cc7ceb4)
+++ src/ControlStruct/ExceptDeclNew.cpp	(revision 279f8dff807a4765240f9981565075e11ad26e2e)
@@ -242,5 +242,5 @@
 }
 
-static ast::ObjectDecl * createExternVTable(
+ast::ObjectDecl * createExternVTable(
 		CodeLocation const & location,
 		std::string const & exceptionName,
@@ -451,5 +451,5 @@
 	std::string const & tableName = decl->name;
 
-    ast::ObjectDecl * retDecl;
+	ast::ObjectDecl * retDecl;
 	if ( decl->storage.is_extern ) {
 		// Unique type-ids are only needed for polymorphic instances.
@@ -473,9 +473,9 @@
 	}
 
-    for ( ast::ptr<ast::Attribute> const & attr : decl->attributes ) {
-        retDecl->attributes.push_back( attr );
-    }
-
-    return retDecl;
+	for ( ast::ptr<ast::Attribute> const & attr : decl->attributes ) {
+		retDecl->attributes.push_back( attr );
+	}
+
+	return retDecl;
 }
 
@@ -483,5 +483,5 @@
 	ast::StructInstType const * postvisit( ast::VTableType const * type ) {
 		auto inst = type->base.as<ast::BaseInstType>();
-        
+
 		std::string vtableName = Virtual::vtableTypeName( inst->name );
 
