From b2f6ed720929fb5115998df607b16f76bc0e892a Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Mon, 18 Jun 2012 16:26:31 -0700 Subject: [PATCH] Fix usage of CastType --- type.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/type.cpp b/type.cpp index d7da461e..85f6af88 100644 --- a/type.cpp +++ b/type.cpp @@ -198,13 +198,13 @@ AtomicType::GetVariability() const { bool Type::IsPointerType() const { - return (CastType(this) != NULL); + return (CastType(this) != NULL); } bool Type::IsArrayType() const { - return (CastType(this) != NULL); + return (CastType(this) != NULL); } bool