[NFC] Attempting to fix sphinx build failure with badly encoded characters from incoming patch.

This commit is contained in:
Mitchell Balan 2019-11-19 11:39:13 -05:00
parent 50b17de05d
commit 4f7dce78c2
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ Options
within copy constructors, since some compilers issue warnings/errors when
base classes are not explicitly intialized in copy constructors. For example,
``gcc`` with ``-Wextra`` or ``-Werror=extra`` issues warning or error
``base class Bar should be explicitly initialized in the copy constructor``
``base class 'Bar' should be explicitly initialized in the copy constructor``
if ``Bar()`` were removed in the following example:
.. code-block:: c++