From ccf8ea17f1d94aa0a266a1be3c1bf75b8dc65a2d Mon Sep 17 00:00:00 2001 From: mes5k Date: Tue, 22 Aug 2006 06:13:56 +0000 Subject: [PATCH] minor tweak to a min function signature --- include/tclap/StdOutput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tclap/StdOutput.h b/include/tclap/StdOutput.h index e357cef..0162cb3 100644 --- a/include/tclap/StdOutput.h +++ b/include/tclap/StdOutput.h @@ -237,7 +237,7 @@ inline void StdOutput::spacePrint( std::ostream& os, while ( start < len ) { // find the substring length - int stringLen = std::min( len - start, allowedLen ); + int stringLen = std::min( len - start, allowedLen ); // trim the length so it doesn't end in middle of a word if ( stringLen == allowedLen )