diff options
author | Mitchell Balan <mitchell@stellarscience.com> | 2019-11-19 11:39:13 -0500 |
---|---|---|
committer | Mitchell Balan <mitchell@stellarscience.com> | 2019-11-19 11:39:26 -0500 |
commit | 4f7dce78c2372615b306435ba3d02ec684a6761c (patch) | |
tree | 1307e4936a24f2e465eb8f08ba09dd3a76625e6f | |
parent | 50b17de05dbcd4d172d44e2f9847ff580fa791cd (diff) | |
download | bcm5719-llvm-4f7dce78c2372615b306435ba3d02ec684a6761c.tar.gz bcm5719-llvm-4f7dce78c2372615b306435ba3d02ec684a6761c.zip |
[NFC] Attempting to fix sphinx build failure with badly encoded characters from incoming patch.
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/readability-redundant-member-init.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/readability-redundant-member-init.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-redundant-member-init.rst index 116de1f3dd3..fbe32624e3c 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/readability-redundant-member-init.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/readability-redundant-member-init.rst @@ -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++ |