Index: doc/theses/mike_brooks_MMath/uw-ethesis.bib
===================================================================
--- doc/theses/mike_brooks_MMath/uw-ethesis.bib	(revision dc414d7f2f6a5165d17ff455708991972ab523e3)
+++ doc/theses/mike_brooks_MMath/uw-ethesis.bib	(revision 1bd2bff9dfcda6b3d61968c767555ab340ac2e9e)
@@ -31,4 +31,5 @@
 
 @misc{cxx:raii-abi,
+    key		= {Itanium},
     title	= {Itanium C++ ABI},
     howpublished= {\url{https://itanium-cxx-abi.github.io/cxx-abi/abi.html}},
Index: doc/theses/mike_brooks_MMath/uw-ethesis.tex
===================================================================
--- doc/theses/mike_brooks_MMath/uw-ethesis.tex	(revision dc414d7f2f6a5165d17ff455708991972ab523e3)
+++ doc/theses/mike_brooks_MMath/uw-ethesis.tex	(revision 1bd2bff9dfcda6b3d61968c767555ab340ac2e9e)
@@ -90,6 +90,6 @@
 \newcommand{\cmark}{\ding{51}}
 \newcommand{\xmark}{\ding{55}}
+\usepackage{multirow}
 \usepackage[labelformat=simple,aboveskip=0pt,farskip=0pt,font=normalsize]{subfig}
-\usepackage{multirow}
 \renewcommand\thesubfigure{(\alph{subfigure})}
 
@@ -115,5 +115,5 @@
 
 \newcommand{\uCpp}{$\mu$\CC}
-\newcommand{\PAB}[1]{{\color{red}PAB: #1}}
+\newcommand{\PAB}[1]{{\color{magenta}PAB: #1}}
 \newcommand{\MLB}[1]{{\color{red}MLB: #1}}
 
@@ -179,6 +179,6 @@
 \setlength{\evensidemargin}{0.125in} % Adds 1/8 in. to binding side of all 
 % even-numbered pages when the "twoside" printing option is selected
-\setlength{\oddsidemargin}{0.125in} % Adds 1/8 in. to the left of all pages when "oneside" printing is selected, and to the left of all odd-numbered pages when "twoside" printing is selected
-\setlength{\textwidth}{6.375in} % assuming US letter paper (8.5 in. x 11 in.) and side margins as above
+%\setlength{\oddsidemargin}{0.125in} % Adds 1/8 in. to the left of all pages when "oneside" printing is selected, and to the left of all odd-numbered pages when "twoside" printing is selected
+%\setlength{\textwidth}{6.375in} % assuming US letter paper (8.5 in. x 11 in.) and side margins as above
 \raggedbottom
 
Index: libcfa/src/collections/list.hfa
===================================================================
--- libcfa/src/collections/list.hfa	(revision dc414d7f2f6a5165d17ff455708991972ab523e3)
+++ libcfa/src/collections/list.hfa	(revision 1bd2bff9dfcda6b3d61968c767555ab340ac2e9e)
@@ -10,6 +10,6 @@
 // Created On       : Wed Apr 22 18:00:00 2020
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Apr 24 18:12:59 2025
-// Update Count     : 72
+// Last Modified On : Thu Aug  7 10:46:08 2025
+// Update Count     : 75
 //
 
@@ -154,11 +154,7 @@
 
 
-
-
-
 forall( tE & ) {
 	struct dlink{
-		tE * next;
-		tE * prev;
+		tE * next, * prev;
 	};
 
@@ -169,21 +165,22 @@
 	}
 
-	forall( tLinks & = dlink( tE ) )
-	struct dlist {
-		inline dlink( tE );
-	};
-
-	forall( tLinks & | embedded( tE, tLinks, dlink( tE ) ) ) {
-		static inline tE * $get_list_origin_addr( dlist( tE, tLinks ) & list ) {
-			dlink( tE ) & link_from_null = (*(tE *)0p)`inner;
-			ptrdiff_t link_offset = (ptrdiff_t)&link_from_null;
-			size_t origin_addr = ((size_t)&list) - link_offset;
-			size_t preResult = ORIGIN_TAG_SET( origin_addr );
-			return (tE *)preResult;
-		}
-
-		static inline void ?{}( dlist( tE, tLinks ) & this ) {
-			tE * listOrigin = $get_list_origin_addr( this );
-			((dlink( tE ) &)this){ listOrigin, listOrigin };
+	forall( tLinks & = dlink( tE ) ) {
+		struct dlist {
+			inline dlink( tE );
+		};
+
+		forall( | embedded( tE, tLinks, dlink( tE ) ) ) {
+			static inline tE * $get_list_origin_addr( dlist( tE, tLinks ) & list ) {
+				dlink( tE ) & link_from_null = (*(tE *)0p)`inner;
+				ptrdiff_t link_offset = (ptrdiff_t)&link_from_null;
+				size_t origin_addr = ((size_t)&list) - link_offset;
+				size_t preResult = ORIGIN_TAG_SET( origin_addr );
+				return (tE *)preResult;
+			}
+
+			static inline void ?{}( dlist( tE, tLinks ) & this ) {
+				tE * listOrigin = $get_list_origin_addr( this );
+				((dlink( tE ) &)this){ listOrigin, listOrigin };
+			}
 		}
 	}
