Skip to content

Commit dc726f4

Browse files
authored
Add C++ Core Guidelines link to C26438
1 parent c9741f7 commit dc726f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code-quality/c26438.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.assetid: c7b3f59c-fb2f-4816-bda4-0fad23c80d83
1212
"Avoid **`goto`**."
1313

1414
**C++ Core Guidelines**:\
15-
ES.76: Avoid goto
15+
[ES.76](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es76-avoid-goto): Avoid goto
1616

1717
The use of **`goto`** is widely considered a dangerous and error-prone practice. It's acceptable only in generated code, such as in a parser generated from a grammar. With modern C++ features and utilities provided by the Guidelines Support Library, it should be easy to avoid **`goto`** altogether.
1818

0 commit comments

Comments
 (0)