Index: src/Validate/ReplaceTypedef.cpp
===================================================================
--- src/Validate/ReplaceTypedef.cpp	(revision 35cc6d4773c9705fbac2d875d39d6aa6120e8f80)
+++ src/Validate/ReplaceTypedef.cpp	(revision 5780d0daa4264756677240ebbf2a1ad74597dadb)
@@ -10,6 +10,6 @@
 // Created On       : Tue Jun 29 14:59:00 2022
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Dec 14 16:11:51 2023
-// Update Count     : 4
+// Last Modified On : Mon Dec 16 20:50:42 2024
+// Update Count     : 5
 //
 
@@ -135,8 +135,6 @@
 };
 static bool dimensionPresenceMismatched( const ast::Type * t0, const ast::Type * t1) {
-	std::vector<const ast::ArrayType *> at0s = std::move(
-		ast::Pass<ArrayTypeExtractor>::read( t0 ) );
-	std::vector<const ast::ArrayType *> at1s = std::move(
-		ast::Pass<ArrayTypeExtractor>::read( t1 ) );
+	std::vector<const ast::ArrayType *> at0s = ast::Pass<ArrayTypeExtractor>::read( t0 );
+	std::vector<const ast::ArrayType *> at1s = ast::Pass<ArrayTypeExtractor>::read( t1 );
 	assert( at0s.size() == at1s.size() );
 	for (size_t i = 0; i < at0s.size(); i++) {
