Index: src/ControlStruct/ExceptDeclNew.cpp
===================================================================
--- src/ControlStruct/ExceptDeclNew.cpp	(revision 89bef9594bd88ab4ea6c26fc28e3256511af6421)
+++ src/ControlStruct/ExceptDeclNew.cpp	(revision 18ebc28cba8a18b2ff7556a15e02215d055efd9e)
@@ -242,5 +242,5 @@
 }
 
-static ast::ObjectDecl * createExternVTable(
+ast::ObjectDecl * createExternVTable(
 		CodeLocation const & location,
 		std::string const & exceptionName,
@@ -453,5 +453,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.
@@ -475,9 +475,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;
 }
 
@@ -485,5 +485,5 @@
 	ast::StructInstType const * postvisit( ast::VTableType const * type ) {
 		auto inst = type->base.as<ast::BaseInstType>();
-        
+
 		std::string vtableName = Virtual::vtableTypeName( inst->name );
 
