From 831f7f02153eeb4679aafffaae3876db2ef12107 Mon Sep 17 00:00:00 2001 From: deeaitch Date: Sat, 28 Mar 2026 08:21:02 -0400 Subject: [PATCH] coding style fix --- analysis/#01 — When Arithmetic Cannot Be Trusted/readme.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/analysis/#01 — When Arithmetic Cannot Be Trusted/readme.md b/analysis/#01 — When Arithmetic Cannot Be Trusted/readme.md index 3919cdc..674054e 100644 --- a/analysis/#01 — When Arithmetic Cannot Be Trusted/readme.md +++ b/analysis/#01 — When Arithmetic Cannot Be Trusted/readme.md @@ -195,15 +195,13 @@ Wait for valid data. ```cpp auto result = safe_add(a, b); -if (result.invalid) -{ +if (result.invalid) { publish_invalid(); error_counter++; return; } -if (result.value > c) -{ +if (result.value > c) { update_state(); } ```