From: Mikko Rasa Date: Sat, 1 Dec 2012 09:34:19 +0000 (+0200) Subject: Add the target type to a lexical_cast invocation X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=a6d467d13a8fc69a508d4d0698885fc0c627d11d;p=builder.git Add the target type to a lexical_cast invocation --- 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); }