From: Chris Lattner Date: Tue, 31 Jul 2007 16:50:51 +0000 (+0000) Subject: update name X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11406c14282ae683fc5fa93a6aae49d53b214d3b;p=clang update name git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40637 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/InternalsManual.html b/docs/InternalsManual.html index 16e5d2d813..3b49c9c619 100644 --- a/docs/InternalsManual.html +++ b/docs/InternalsManual.html @@ -395,7 +395,7 @@ typedefs to find the pointer type. For example, if the subexpression had type "foo*", we could return that type as the result. If the subexpression had type "bar", we want to return "foo*" (note that we do not want "int*"). In order to provide all of this, Type has -a getIfPointerType() method that checks whether the type is structurally a +a getAsPointerType() method that checks whether the type is structurally a PointerType and, if so, returns the best one. If not, it returns a null pointer.