Index: src/AST/Decl.hpp
===================================================================
--- src/AST/Decl.hpp	(revision b70abafd13ad21438550757c7dbf51e9ec764973)
+++ src/AST/Decl.hpp	(revision 72e76fd79ca74c8a20af8bb1560c3808f736579a)
@@ -316,5 +316,5 @@
 	EnumDecl( const CodeLocation& loc, const std::string& name,
 		std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall, Type * base = nullptr,
-		 std::unordered_map< std::string, long long > enumValues = std::unordered_map< std::string, long long >() )
+		std::unordered_map< std::string, long long > enumValues = std::unordered_map< std::string, long long >() )
 	: AggregateDecl( loc, name, std::move(attrs), linkage ), base(base), enumValues(enumValues) {}
 
Index: src/AST/Inspect.cpp
===================================================================
--- src/AST/Inspect.cpp	(revision b70abafd13ad21438550757c7dbf51e9ec764973)
+++ src/AST/Inspect.cpp	(revision 72e76fd79ca74c8a20af8bb1560c3808f736579a)
@@ -5,11 +5,11 @@
 // file "LICENCE" distributed with Cforall.
 //
-// Node.hpp --
+// Inspect.cpp -- Helpers to get information from the AST.
 //
 // Author           : Thierry Delisle
 // Created On       : Fri Jun 24 13:16:31 2022
-// Last Modified By :
-// Last Modified On :
-// Update Count     :
+// Last Modified By : Andrew Beach
+// Last Modified On : Mon Jun 27 15:35:00 2022
+// Update Count     : 1
 //
 
@@ -21,12 +21,15 @@
 
 namespace ast {
-	bool structHasFlexibleArray( const ast::StructDecl * decl ) {
-		if(decl->members.size() == 0) return false;
-		const auto & last = *decl->members.rbegin();
-		auto lastd = last.as<ast::DeclWithType>();
-		if(!lastd) return false; // I don't know what this is possible, but it might be.
-		auto atype = dynamic_cast<const ast::ArrayType *>(lastd->get_type());
-		if(!atype) return false;
-		return !atype->isVarLen && !atype->dimension;
-	}
-};
+
+bool structHasFlexibleArray( const ast::StructDecl * decl ) {
+	if(decl->members.size() == 0) return false;
+	const auto & last = *decl->members.rbegin();
+	auto lastd = last.as<ast::DeclWithType>();
+	// I don't know what this is possible, but it might be.
+	if(!lastd) return false;
+	auto atype = dynamic_cast<const ast::ArrayType *>(lastd->get_type());
+	if(!atype) return false;
+	return !atype->isVarLen && !atype->dimension;
+}
+
+} // namespace ast
Index: src/AST/Inspect.hpp
===================================================================
--- src/AST/Inspect.hpp	(revision b70abafd13ad21438550757c7dbf51e9ec764973)
+++ src/AST/Inspect.hpp	(revision 72e76fd79ca74c8a20af8bb1560c3808f736579a)
@@ -5,11 +5,11 @@
 // file "LICENCE" distributed with Cforall.
 //
-// Node.hpp --
+// Inspect.hpp -- Helpers to get information from the AST.
 //
 // Author           : Thierry Delisle
 // Created On       : Fri Jun 24 13:16:31 2022
-// Last Modified By :
-// Last Modified On :
-// Update Count     :
+// Last Modified By : Andrew Beach
+// Last Modified On : Mon Jun 27 15:35:00 2022
+// Update Count     : 1
 //
 
@@ -17,4 +17,7 @@
 
 namespace ast {
-	bool structHasFlexibleArray( const ast::StructDecl * );
+
+// Does the structure end in a flexable array declaration?
+bool structHasFlexibleArray( const ast::StructDecl * );
+
 }
