This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Also update recursive call to d_lookup_symbol_imports.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e08db6db1dd514f1c99f94bb6a9c1cfe02a1ab90

commit e08db6db1dd514f1c99f94bb6a9c1cfe02a1ab90
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Sun Feb 21 22:05:46 2016 +0100

    Also update recursive call to d_lookup_symbol_imports.

Diff:
---
 gdb/d-namespace.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gdb/d-namespace.c b/gdb/d-namespace.c
index 2c8b36c..6399ef0 100644
--- a/gdb/d-namespace.c
+++ b/gdb/d-namespace.c
@@ -485,7 +485,7 @@ d_lookup_symbol_imports (const char *scope, const char *name,
 		      name_scope++;
 		      sym = d_lookup_symbol_imports (current->import_src,
 						     name + name_scope,
-						     block, domain, 0);
+						     block, domain);
 		    }
 		}
 	    }
@@ -495,7 +495,7 @@ d_lookup_symbol_imports (const char *scope, const char *name,
 		 current->import_src as MODULE to direct the search
 		 towards the imported module.  */
 	      sym = d_lookup_symbol_imports (current->import_src,
-					     name, block, domain, 0);
+					     name, block, domain);
 	    }
 	  current->searched = 0;
 	  discard_cleanups (searched_cleanup);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]