Index: src/ControlStruct/ExceptDecl.cpp
===================================================================
--- src/ControlStruct/ExceptDecl.cpp	(revision 523e3008d75a9ed5a64586841ec56ce654b559fc)
+++ src/ControlStruct/ExceptDecl.cpp	(revision 38093ae64b024ab4c59bfa2d4555f10ec56e103e)
@@ -99,5 +99,5 @@
 		createExceptionInstType( exceptionName, params ) ) );
 	type->returns.push_back( new ast::PointerType(
-		new ast::BasicType( ast::BasicType::Char, ast::CV::Const ) ) );
+		new ast::BasicType( ast::BasicKind::Char, ast::CV::Const ) ) );
 	return type;
 }
@@ -344,5 +344,5 @@
 				"",
 				new ast::PointerType(
-					new ast::BasicType( ast::BasicType::Char, ast::CV::Const ) )
+					new ast::BasicType( ast::BasicKind::Char, ast::CV::Const ) )
 			),
 		},
Index: src/ControlStruct/ExceptTranslate.cpp
===================================================================
--- src/ControlStruct/ExceptTranslate.cpp	(revision 523e3008d75a9ed5a64586841ec56ce654b559fc)
+++ src/ControlStruct/ExceptTranslate.cpp	(revision 38093ae64b024ab4c59bfa2d4555f10ec56e103e)
@@ -182,5 +182,5 @@
 		location,
 		"__handler_index",
-		new ast::BasicType( ast::BasicType::SignedInt )
+		new ast::BasicType( ast::BasicKind::SignedInt )
 		);
 }
@@ -201,5 +201,5 @@
 		location,
 		"__ret_bool",
-		new ast::BasicType( ast::BasicType::Bool ),
+		new ast::BasicType( ast::BasicKind::Bool ),
 		nullptr, //init
 		ast::Storage::Classes{},
@@ -231,5 +231,5 @@
 		location,
 		"__handler_index",
-		new ast::BasicType(ast::BasicType::SignedInt),
+		new ast::BasicType( ast::BasicKind::SignedInt ),
 		nullptr,
 		ast::Storage::Classes{},
