Skip to content

Commit

Permalink
Fix calibration logging
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev committed Aug 13, 2024
1 parent 34f9e1b commit 00d3928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/image/ColorRgb.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ struct ColorRgb
operator std::string()
{
std::stringstream ss;
ss << "(" << red << ", " << green << ", " << blue << ")";
ss << "(" << std::to_string(red) << ", " << std::to_string(green) << ", " << std::to_string(blue) << ")";
return ss.str();
}

Expand Down

0 comments on commit 00d3928

Please sign in to comment.