Index: docs/clang-tidy/checks/modernize-use-emplace.rst =================================================================== --- docs/clang-tidy/checks/modernize-use-emplace.rst +++ docs/clang-tidy/checks/modernize-use-emplace.rst @@ -48,6 +48,7 @@ In this case the calls of ``push_back`` won't be replaced. .. code:: c++ + std::vector > v; v.push_back(new int(5)); auto *ptr = int;