1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

NFC ProgrammersManual fix

llvm-svn: 286645
This commit is contained in:
Piotr Padlewski 2016-11-11 22:12:15 +00:00
parent 47ba1ba573
commit 3021224cb0

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)) {
// ...
}