docs: Fix a missing language in a code-block

This should fix the docs build.
Spotted by spstarr, thanks!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264209 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Justin Bogner 2016-03-23 22:54:19 +00:00
parent fe3378bb83
commit 8b620f3783

View File

@ -359,7 +359,7 @@ that inherits from the ErrorInfo utility:
Error values can be implicitly converted to bool: true for error, false for
success, enabling the following idiom:
.. code-block::
.. code-block:: c++
if (auto Err = mayFail())
return Err;