提交 42310c58 编写于 作者: L Luke Chen

Remove extra colon from print dump in Python binding materials

上级 9ba65daf
......@@ -4,7 +4,7 @@
float cmult(int int_param, float float_param) {
float return_value = int_param * float_param;
printf(" In cmult : int: %d float %.1f returning %.1f\n", int_param,
printf(" In cmult : int %d float %.1f returning %.1f\n", int_param,
float_param, return_value);
return return_value;
}
......
......@@ -6,7 +6,7 @@
float cppmult(int int_param, float float_param) {
float return_value = int_param * float_param;
std::cout << std::setprecision(1) << std::fixed
<< " In cppmul: int: " << int_param
<< " In cppmul: int " << int_param
<< " float " << float_param
<< " returning " << return_value
<< std::endl;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册