From: Richard Smith
Date: Mon, 3 Feb 2014 07:02:19 +0000 (+0000)
Subject: Fix typo in CSS class name.
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=390feb032869f5778a6e6a48797707e210e15990;p=clang
Fix typo in CSS class name.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200680 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/www/diagnostics.html b/www/diagnostics.html
index 76a7ba4a82..00a3f9a9f6 100644
--- a/www/diagnostics.html
+++ b/www/diagnostics.html
@@ -350,11 +350,11 @@ cannot cope.
f<A>(a);
^
$ clang t.cc
- t.cc:1:26: error: missing 'typename' prior to dependent type name 'T::type'
+ t.cc:1:26: error: missing 'typename' prior to dependent type name 'T::type'
template<class T> void f(T::type) { }
^~~~~~~
typename
- t.cc:6:5: error: no matching function for call to 'f'
+ t.cc:6:5: error: no matching function for call to 'f'
f<A>(a);
^~~~
t.cc:1:24: note: candidate template ignored: substitution failure [with T = A]: no type named 'type' in 'A'