Skip to content

Commit

Permalink
Merge pull request #180 from RokerHRO/main
Browse files Browse the repository at this point in the history
Fix typo in abi.html &rt; -> >
  • Loading branch information
rjmccall authored Mar 25, 2024
2 parents 498320c + f98ec93 commit 07427ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions abi.html
Original file line number Diff line number Diff line change
Expand Up @@ -4484,12 +4484,12 @@ <h4><a href="#mangling-structure"> 5.1.2 General Structure </a></h4>
eqivalent function templates in the same namespace:

<pre>// a.cpp:
template &lt;int&rt; void foo() {}
template &lt;&rt; void foo<0>();
template &lt;int&gt; void foo() {}
template &lt;&gt; void foo<0>();

// b.cpp:
template &lt;long&rt; void foo() {}
template &lt;&rt; void foo<0>();</pre>
template &lt;long&gt; void foo() {}
template &lt;&gt; void foo<0>();</pre>

<p>
The C++ standard grants implementations broad flexibility to
Expand Down

0 comments on commit 07427ac

Please sign in to comment.