Index: src/AST/Type.hpp
===================================================================
--- src/AST/Type.hpp	(revision 08c07801e1668d4ca42622537be1cac070b58ab4)
+++ src/AST/Type.hpp	(revision 0f6a775253ac135c7aefa8bf075ce817231ec7d1)
@@ -164,5 +164,6 @@
 	static const char *typeNames[];
 
-	BasicType( Kind k, CV::Qualifiers q = {} ) : Type(q), kind(k) {}
+	BasicType( Kind k, CV::Qualifiers q = {}, std::vector<ptr<Attribute>> && as = {} ) 
+	: Type(q, std::move(as)), kind(k) {}
 
 	/// Check if this type represents an integer type
