docs: Fix a missing language in a code-block

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

llvm-svn: 264209
This commit is contained in:
Justin Bogner 2016-03-23 22:54:19 +00:00
parent 068a79493a
commit 91269bfd7a
1 changed files with 1 additions and 1 deletions

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;