diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-01 03:50:01 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-01 03:50:01 +0000 |
commit | 92bc027496b2090498f31cd8278d78720a39c020 (patch) | |
tree | 0f2dab411532a9bcc9595e6c1b508c1c01b84762 | |
parent | 4712c02c1550a72612c07f5aaee455dcd8273b96 (diff) |
Update diagnostic on compatibility page to reflect reality
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107382 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | www/compatibility.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/www/compatibility.html b/www/compatibility.html index 85133fbca2..0f8409b953 100644 --- a/www/compatibility.html +++ b/www/compatibility.html @@ -590,9 +590,8 @@ void g(Base *base) { downcast.mm:6:3: error: no matching function for call to 'f' f(base); ^ -downcast.mm:4:6: note: candidate function not viable: cannot convert from base - class pointer 'Base *' to derived class pointer 'Derived *' for 1st - argument +downcast.mm:4:6: note: candidate function not viable: cannot convert from + superclass 'Base *' to subclass 'Derived *' for 1st argument void f(Derived *); ^ </pre> |