NFC ProgrammersManual fix

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286645 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Piotr Padlewski 2016-11-11 22:12:15 +00:00
parent feb16c84dc
commit 797e9cdb75

View File

@ -149,7 +149,7 @@ rarely have to include this file directly).
.. code-block:: c++
if (AllocationInst *AI = dyn_cast<AllocationInst>(Val)) {
if (auto *AI = dyn_cast<AllocationInst>(Val)) {
// ...
}