File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ should be generally avoided.
1515
1616 static std::string Moo = (Twine("bark") + "bah").str();
1717
18- The ``llvm:: Twine `` does not own the memory of its contents, so it is not
18+ The ``Twine `` does not own the memory of its contents, so it is not
1919recommended to use ``Twine `` created from temporary strings or string literals.
2020
2121.. code-block :: c++
@@ -29,6 +29,6 @@ recommended to use ``Twine`` created from temporary strings or string literals.
2929 }
3030
3131After applying this fix-it hints, the code will use ``std::string `` instead of
32- ``Twine `` for local variables. However, ``llvm:: Twine `` has lots of methods that
32+ ``Twine `` for local variables. However, ``Twine `` has lots of methods that
3333are incompatible with ``std::string ``, so the user may need to adjust the code
3434manually after applying the fix-it hints.
You can’t perform that action at this time.
0 commit comments