container: c++: run linter

This commit is contained in:
2025-08-19 11:46:37 -07:00
parent cc7ecf27a6
commit abac2a37d6
5 changed files with 25 additions and 32 deletions

View File

@@ -288,16 +288,20 @@ class Random final
miles /= 24901;
// TODO(unassigned): would be nice to have some RNG-related info
pt->AddText(std::string{"Fun facts"}
.c_str()); // TODO(unassigned): make this small text
pt->AddText(std::string{
"There are " + std::to_string(is_odd) + " odd numbers and "
+ std::to_string(data.y.size() - is_odd) + " even numbers"}
.c_str());
pt->AddText(std::string{
"If the total values generated were miles, you could circle the earth "
+ std::to_string(miles) + " times!"}
.c_str());
pt->AddText(
std::string{"Fun facts"}
.c_str()); // TODO(unassigned): make this small text
pt->AddText(
std::string{
"There are " + std::to_string(is_odd) + " odd numbers and "
+ std::to_string(data.y.size() - is_odd) + " even numbers"}
.c_str());
pt->AddText(
std::string{
"If the total values generated were miles, you could circle the "
"earth "
+ std::to_string(miles) + " times!"}
.c_str());
pt->Draw();
}