From af6c39b1534244b002bdd2c7413f4ba2e01bf03d Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Sun, 19 Nov 2023 01:36:43 -0500 Subject: [PATCH] Correct an incorrect forward declaration. --- Testing/printDebugging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Testing/printDebugging.h b/Testing/printDebugging.h index d6b4d9f..1dd12e2 100644 --- a/Testing/printDebugging.h +++ b/Testing/printDebugging.h @@ -35,7 +35,7 @@ namespace Alepha::Hydrogen::Testing ::detail:: printDebugging_m enum class OutputMode { All, Relaxed }; template< OutputMode outputMode, typename T > - void streamDebugging( const T &witness, const T &expected ); + void streamDebugging( std::ostream &stream, const T &witness, const T &expected ); template< OutputMode outputMode, typename T > void printDebugging( const T &witness, const T &expected );