From 7b33b727bfe5ee5ff15d57541d3b5970dc3c5fef Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Thu, 16 Nov 2023 03:10:07 -0500 Subject: [PATCH] Fix infinite recursion in debug printing in tests. --- Testing/printDebugging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Testing/printDebugging.h b/Testing/printDebugging.h index 0c81e91..d6b4d9f 100644 --- a/Testing/printDebugging.h +++ b/Testing/printDebugging.h @@ -136,7 +136,7 @@ namespace Alepha::Hydrogen::Testing ::detail:: printDebugging_m friend std::ostream & operator << ( std::ostream &os, const Adaptor &a ) { - streamValue< outputMode >( a, os ); + streamValue< outputMode >( a.element, os ); return os; } };