From adc01856ecbfaae782f52cacdd024f965f65b534 Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Thu, 26 Jul 2007 03:18:02 +0000 Subject: [PATCH] Forgot a return stmt (oops). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40509 91177308-0d34-0410-b5e6-96231b3b80d8 --- AST/Type.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/AST/Type.cpp b/AST/Type.cpp index 867a409d83..560e4c1ba6 100644 --- a/AST/Type.cpp +++ b/AST/Type.cpp @@ -105,6 +105,7 @@ const RecordType *Type::isRecordType() const { // losing all typedef information. if (isa(CanonicalType)) return cast(cast(this)->LookThroughTypedefs()); + return 0; } bool Type::isStructureType() const { -- 2.40.0