Skip to content

Commit 0ff5518

Browse files
authored
Merge pull request isocpp#905 from ewoudvc/es24_toc_rule_correction
ES.24: have TOC rule match body rule
2 parents b41bea6 + 10805fb commit 0ff5518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9192,7 +9192,7 @@ Declaration rules:
91929192
* [ES.21: Don't introduce a variable (or constant) before you need to use it](#Res-introduce)
91939193
* [ES.22: Don't declare a variable until you have a value to initialize it with](#Res-init)
91949194
* [ES.23: Prefer the `{}`-initializer syntax](#Res-list)
9195-
* [ES.24: Use a `unique_ptr<T>` to hold pointers in code that may throw](#Res-unique)
9195+
* [ES.24: Use a `unique_ptr<T>` to hold pointers](#Res-unique)
91969196
* [ES.25: Declare an object `const` or `constexpr` unless you want to modify its value later on](#Res-const)
91979197
* [ES.26: Don't use a variable for two unrelated purposes](#Res-recycle)
91989198
* [ES.27: Use `std::array` or `stack_array` for arrays on the stack](#Res-stack)

0 commit comments

Comments
 (0)