From f00741b7c37ee3a3ae94e9bc86f090e66301a862 Mon Sep 17 00:00:00 2001 From: Juergen Schmidt Date: Tue, 10 Apr 2001 08:20:03 +0000 Subject: #85939# bugfix for lookup of unknown types in the scope of inherited interfaces --- idlc/source/astscope.cxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'idlc/source/astscope.cxx') diff --git a/idlc/source/astscope.cxx b/idlc/source/astscope.cxx index abc7f112b389..6a65a19549a3 100644 --- a/idlc/source/astscope.cxx +++ b/idlc/source/astscope.cxx @@ -2,9 +2,9 @@ * * $RCSfile: astscope.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jsc $ $Date: 2001-03-15 12:30:43 $ + * last change: $Author: jsc $ $Date: 2001-04-10 09:20:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -271,7 +271,8 @@ AstDeclaration* AstScope::lookupInInherited(const OString& scopedName) { pDecl = ((AstInterface*)(*iter))->lookupByName(scopedName); if ( pDecl ) - return pDecl;; + return pDecl; + iter++; } } // Not found -- cgit