diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/compatibility.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/compatibility.html b/www/compatibility.html index b68a766..783758f 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<int>' 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<<' 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<<' that is neither visible in the template definition nor found by argument-dependent lookup</b> std::cout << value << "\n"; <span class="caret"> ^</span> <b>my_file2.cpp:17:3: <span class="error">note:</span> in instantiation of function template specialization 'Dump<ns::Data>' requested here</b> |