From a6d467d13a8fc69a508d4d0698885fc0c627d11d Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 1 Dec 2012 11:34:19 +0200 Subject: [PATCH] Add the target type to a lexical_cast invocation --- source/analyzer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/analyzer.cpp b/source/analyzer.cpp index 7ea1fff..eaf017b 100644 --- a/source/analyzer.cpp +++ b/source/analyzer.cpp @@ -137,7 +137,7 @@ void Analyzer::print_table() const { if(j>0) line += " "; - line += lexical_cast((*i)[j], Fmt("%-s").width(col_width[j])); + line += lexical_cast((*i)[j], Fmt("%-s").width(col_width[j])); } IO::print("%s\n", line); } -- 2.45.2