1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Stop using the foo HTML tag :)

llvm-svn: 35436
This commit is contained in:
Chris Lattner 2007-03-28 18:27:57 +00:00
parent a710f7442c
commit 6847f5465a

View File

@ -803,7 +803,7 @@ vector is also useful when interfacing with code that expects vectors :).
<div class="doc_code">
<pre>
for ( ... ) {
std::vector<foo> V;
std::vector&lt;foo&gt; V;
use V;
}
</pre>
@ -813,7 +813,7 @@ for ( ... ) {
<div class="doc_code">
<pre>
std::vector<foo> V;
std::vector&lt;foo&gt; V;
for ( ... ) {
use V;
V.clear();