Index: src/InitTweak/FixGlobalInit.cpp
===================================================================
--- src/InitTweak/FixGlobalInit.cpp	(revision 7886a92f60940b094ce887ff173fc78b094c1261)
+++ src/InitTweak/FixGlobalInit.cpp	(revision 3859adb4d802f6f27e35aa4ed05a7c87d7ef632e)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 04 15:14:56 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jul  2 16:39:52 2026
-// Update Count     : 35
+// Last Modified On : Fri Jul  3 08:41:54 2026
+// Update Count     : 37
 //
 
@@ -79,6 +79,6 @@
 		// Remove const qualifier from matching names, covering all forward declaration(s) and definition.
 		if ( constDeclsMnames.find( objDecl->mangleName ) != constDeclsMnames.end() ) {
-			ast::Type * fred = const_cast<ast::Type *>(mutDecl->get_type());
-			fred->set_const( false );
+			// SKULLDUGGERY: change value through const pointer.
+			const_cast<ast::Type *>(objDecl->get_type())->set_const( false );
 		} // if
 	}
Index: src/InitTweak/FixInit.cpp
===================================================================
--- src/InitTweak/FixInit.cpp	(revision 7886a92f60940b094ce887ff173fc78b094c1261)
+++ src/InitTweak/FixInit.cpp	(revision 3859adb4d802f6f27e35aa4ed05a7c87d7ef632e)
@@ -818,6 +818,6 @@
 			// Remove const qualifier from definition and there can be no forward declarations.
 			if ( objDecl->type->is_const() ) {
-				ast::Type * fred = const_cast<ast::Type *>(objDecl->get_type());
-				fred->set_const( false );
+				// SKULLDUGGERY: change value through const pointer.
+				const_cast<ast::Type *>(objDecl->get_type())->set_const( false );
 			}
 			// originally wanted to take advantage of gcc nested functions, but
