summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Casting.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-24 20:22:09 +0000
committerChris Lattner <sabre@nondot.org>2002-07-24 20:22:09 +0000
commit5a6d63ae29512d654c8c697f42f32f97b9dc010b (patch)
tree3b918d64c77070d8a7d2d0195c28a318b50232d9 /include/llvm/Support/Casting.h
parent60bfeb816a518ce4444632a5f1f3feb9d332f3a2 (diff)
downloadllvm-5a6d63ae29512d654c8c697f42f32f97b9dc010b.tar.gz
llvm-5a6d63ae29512d654c8c697f42f32f97b9dc010b.tar.bz2
llvm-5a6d63ae29512d654c8c697f42f32f97b9dc010b.tar.xz
Add missing typename's that GCC3.1 is whining about.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3051 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Casting.h')
-rw-r--r--include/llvm/Support/Casting.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h
index 2c072d1bb4..e0d50fe5d5 100644
--- a/include/llvm/Support/Casting.h
+++ b/include/llvm/Support/Casting.h
@@ -71,7 +71,7 @@ struct isa_impl_cl {
template<class ToCl>
static bool isa(const FromCl &Val) {
return isa_impl_wrap<ToCl,const FromCl,
- simplify_type<const FromCl>::SimpleType>::doit(Val);
+ typename simplify_type<const FromCl>::SimpleType>::doit(Val);
}
};
@@ -153,7 +153,7 @@ struct cast_retty_wrap<To, FromTy, FromTy> {
template<class To, class From>
struct cast_retty {
typedef typename cast_retty_wrap<To, From,
- simplify_type<From>::SimpleType>::ret_type ret_type;
+ typename simplify_type<From>::SimpleType>::ret_type ret_type;
};
// Ensure the non-simple values are converted using the simplify_type template
@@ -161,17 +161,17 @@ struct cast_retty {
//
template<class To, class From, class SimpleFrom> struct cast_convert_val {
// This is not a simple type, use the template to simplify it...
- static cast_retty<To, From>::ret_type doit(const From &Val) {
+ static typename cast_retty<To, From>::ret_type doit(const From &Val) {
return cast_convert_val<To, SimpleFrom,
- simplify_type<SimpleFrom>::SimpleType>::doit(
+ typename simplify_type<SimpleFrom>::SimpleType>::doit(
simplify_type<From>::getSimplifiedValue(Val));
}
};
template<class To, class FromTy> struct cast_convert_val<To,FromTy,FromTy> {
// This _is_ a simple type, just cast it.
- static cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
- return (cast_retty<To, FromTy>::ret_type)Val;
+ static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
+ return (typename cast_retty<To, FromTy>::ret_type)Val;
}
};
@@ -185,16 +185,17 @@ template<class To, class FromTy> struct cast_convert_val<To,FromTy,FromTy> {
// cast<Instruction>(myVal)->getParent()
//
template <class X, class Y>
-inline cast_retty<X, Y>::ret_type cast(const Y &Val) {
+inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
assert(isa<X>(Val) && "cast<Ty>() argument of uncompatible type!");
- return cast_convert_val<X, Y, simplify_type<Y>::SimpleType>::doit(Val);
+ return cast_convert_val<X, Y,
+ typename simplify_type<Y>::SimpleType>::doit(Val);
}
// cast_or_null<X> - Functionally identical to cast, except that a null value is
// accepted.
//
template <class X, class Y>
-inline cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
+inline typename cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
if (Val == 0) return 0;
assert(isa<X>(Val) && "cast_or_null<Ty>() argument of uncompatible type!");
return cast<X>(Val);
@@ -210,7 +211,7 @@ inline cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
//
template <class X, class Y>
-inline cast_retty<X, Y*>::ret_type dyn_cast(Y *Val) {
+inline typename cast_retty<X, Y*>::ret_type dyn_cast(Y *Val) {
return isa<X>(Val) ? cast<X, Y*>(Val) : 0;
}
@@ -218,7 +219,7 @@ inline cast_retty<X, Y*>::ret_type dyn_cast(Y *Val) {
// value is accepted.
//
template <class X, class Y>
-inline cast_retty<X, Y*>::ret_type dyn_cast_or_null(Y *Val) {
+inline typename cast_retty<X, Y*>::ret_type dyn_cast_or_null(Y *Val) {
return (Val && isa<X>(Val)) ? cast<X, Y*>(Val) : 0;
}