1
0
forked from Alepha/Alepha

Fix infinite recursion in debug printing in tests.

This commit is contained in:
2023-11-16 03:10:07 -05:00
parent b8d6c5aced
commit 7b33b727bf

View File

@ -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;
}
};