Index: src/GenPoly/Box.cc
===================================================================
--- src/GenPoly/Box.cc	(revision 0b00df0b8a3e78119f146bb3d5894465fb9f24d4)
+++ src/GenPoly/Box.cc	(revision bee06942613823dfa3adc6451bf356922ada830e)
@@ -298,5 +298,5 @@
 													 functionNesting > 0 ? Type::StorageClasses() : Type::StorageClasses( Type::Static ),
 													 LinkageSpec::AutoGen, layoutFnType, new CompoundStmt(),
-													 std::list< Attribute * >(), Type::FuncSpecifiers( Type::Inline ) );
+													 std::vector< Attribute * >(), Type::FuncSpecifiers( Type::Inline ) );
 		layoutDecl->fixUniqueId();
 		return layoutDecl;
@@ -1485,5 +1485,5 @@
 			Attribute * aligned = new Attribute( "aligned", std::list<Expression*>{ new ConstantExpr( Constant::from_int(8) ) } );
 			return new ArrayType( Type::Qualifiers(), charType, size,
-				true, false, std::list<Attribute *>{ aligned } );
+				true, false, std::vector< Attribute * >{ aligned } );
 		}
 
@@ -1764,7 +1764,7 @@
 
 		Expression *PolyGenericCalculator::postmutate( SizeofExpr *sizeofExpr ) {
-			Type *ty = sizeofExpr->get_isType() ? 
+			Type *ty = sizeofExpr->get_isType() ?
 				sizeofExpr->get_type() : sizeofExpr->get_expr()->get_result();
-			
+
 			Expression * gen = genSizeof( ty );
 			if ( gen ) {
