how about that, StringRef doesn't allow any mutation, thanks to

Frits for straightening me out.

llvm-svn: 135856
This commit is contained in:
Chris Lattner 2011-07-23 17:18:57 +00:00
parent 54b1677d23
commit 57132e88b7
1 changed files with 4 additions and 4 deletions

View File

@ -1280,10 +1280,10 @@ something like that).</li>
method if the method "computes" the result string. Instead, use
std::string.</li>
<li>StringRef's allow you to mutate the pointed-to string bytes, but because it
doesn't own the string, it doesn't allow you to insert or remove bytes from
the range. For editing operations like this, it interoperates with the
<a href="#dss_twine">Twine</a> class.</li>
<li>StringRef's do not allow you to mutate the pointed-to string bytes and it
doesn't allow you to insert or remove bytes from the range. For editing
operations like this, it interoperates with the <a
href="#dss_twine">Twine</a> class.</li>
</ol>
<p>Because of its strengths and limitations, it is very common for a function to