Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _posts/2017-10-20-totw-77.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ them, or let them go out of scope, but don’t make any other assumptions about
their state.

Clang-tidy provides some some static-checking to catch use-after move with the
[misc-use-after-move](http://clang.llvm.org/extra/clang-tidy/checks/misc-use-after-move.html)
[bugprone-use-after-move](https://clang.llvm.org/extra/clang-tidy/checks/bugprone/use-after-move.html)
check. However, static-analysis won't ever be able to catch all of these - be on
the lookout. Call these out in code review, and avoid them in your own code.
Stay away from the zombies.
Expand Down