1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 d0b286aac1
commit a8d4a2dea1

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;