aboutsummaryrefslogtreecommitdiff
path: root/www/compatibility.html
diff options
context:
space:
mode:
authorJay Foad <jay.foad@gmail.com>2011-06-14 12:59:25 +0000
committerJay Foad <jay.foad@gmail.com>2011-06-14 12:59:25 +0000
commit2a00b8347bdf0064cc106295a070c00669ded9a9 (patch)
tree2b7127095842afde3994b565bd812b994c853af0 /www/compatibility.html
parente1eed38733ed47d44f9d8c7731817c411eaf4141 (diff)
Hyphenate "argument-dependent".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132989 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/compatibility.html')
-rw-r--r--www/compatibility.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/compatibility.html b/www/compatibility.html
index b68a7663d4..783758f3ac 100644
--- a/www/compatibility.html
+++ b/www/compatibility.html
@@ -459,7 +459,7 @@ int main() {
<p>Clang complains:
-<pre> <b>my_file.cpp:2:10: <span class="error">error:</span> call to function 'Multiply' that is neither visible in the template definition nor found by argument dependent lookup</b>
+<pre> <b>my_file.cpp:2:10: <span class="error">error:</span> call to function 'Multiply' that is neither visible in the template definition nor found by argument-dependent lookup</b>
return Multiply(x, x);
<span class="caret"> ^</span>
<b>my_file.cpp:10:3: <span class="note">note:</span> in instantiation of function template specialization 'Squared&lt;int&gt;' requested here</b>
@@ -520,7 +520,7 @@ void Use() {
<p>Again, Clang complains:</p>
-<pre> <b>my_file2.cpp:5:13: <span class="error">error:</span> call to function 'operator&lt;&lt;' that is neither visible in the template definition nor found by argument dependent lookup</b>
+<pre> <b>my_file2.cpp:5:13: <span class="error">error:</span> call to function 'operator&lt;&lt;' that is neither visible in the template definition nor found by argument-dependent lookup</b>
std::cout &lt;&lt; value &lt;&lt; "\n";
<span class="caret"> ^</span>
<b>my_file2.cpp:17:3: <span class="error">note:</span> in instantiation of function template specialization 'Dump&lt;ns::Data&gt;' requested here</b>