From eaf710847f353940dadb53e86ff29338e1ffa100 Mon Sep 17 00:00:00 2001 From: Lin Yuan Date: Sat, 14 Feb 2026 20:36:36 +0000 Subject: [PATCH] fix syntax in illustrative example --- skills/cpp-coding-standards/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/cpp-coding-standards/SKILL.md b/skills/cpp-coding-standards/SKILL.md index 4becb9c6..cdab76cf 100644 --- a/skills/cpp-coding-standards/SKILL.md +++ b/skills/cpp-coding-standards/SKILL.md @@ -689,7 +689,7 @@ constexpr auto lookup_table = [] { // Per.19: Prefer contiguous data for cache-friendliness std::vector points; // GOOD: contiguous -std::vector>; // BAD: pointer chasing +std::vector> indirect_points; // BAD: pointer chasing ``` ### Anti-Patterns