From b169a2e1ddcb2fb66f5f2721b20229fd5a4bfa80 Mon Sep 17 00:00:00 2001 From: voidforall Date: Sat, 14 Feb 2026 20:33:59 +0000 Subject: [PATCH] Update .cursor/skills/cpp-coding-standards/SKILL.md Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .cursor/skills/cpp-coding-standards/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cursor/skills/cpp-coding-standards/SKILL.md b/.cursor/skills/cpp-coding-standards/SKILL.md index 4becb9c6..cdab76cf 100644 --- a/.cursor/skills/cpp-coding-standards/SKILL.md +++ b/.cursor/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