Skip to content

Commit bebbfa0

Browse files
committed
code review fix 2 of value representation
1 parent b2484f7 commit bebbfa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/fw-logger/string-formatter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace fw_logger
5454

5555
st_regular_exp[2] << "\\{\\b(" << i << "):f\\}";
5656
regular_exp[2] = st_regular_exp[2].str();
57-
st_replacement[2] << static_cast<float_t>(params[i]);
57+
st_replacement[2] << params[i];
5858
replacement[2] = st_replacement[2].str();
5959
exp_replace_map[regular_exp[2]] = replacement[2];
6060

0 commit comments

Comments
 (0)