diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-09-18 12:56:47 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-09-18 12:56:47 +0000 |
commit | d299ab166958b481aa753c809615110fc295cd96 (patch) | |
tree | 56d43b3b1187d46ee64fae45462fbe73edfec5e0 /include | |
parent | ce31f40295a0cd42f5df32f6295cf334a3a6df76 (diff) | |
download | external_llvm-d299ab166958b481aa753c809615110fc295cd96.zip external_llvm-d299ab166958b481aa753c809615110fc295cd96.tar.gz external_llvm-d299ab166958b481aa753c809615110fc295cd96.tar.bz2 |
back out r114279 as some darwin buildbots get errors compiling clang:
svn merge -c -114279 llvm/include/llvm/Support/Casting.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114280 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Casting.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h index 6bb9806..c589171 100644 --- a/include/llvm/Support/Casting.h +++ b/include/llvm/Support/Casting.h @@ -232,8 +232,8 @@ inline typename cast_retty<X, Y>::ret_type dyn_cast(const Y &Val) { // value is accepted. // template <class X, class Y> -inline typename cast_retty<X, Y*>::ret_type dyn_cast_or_null(Y *Val) { - return (Val && isa<X>(Val)) ? cast<X>(Val) : 0; +inline typename cast_retty<X, Y>::ret_type dyn_cast_or_null(const Y &Val) { + return (Val && isa<X>(Val)) ? cast<X, Y>(Val) : 0; } } // End llvm namespace |