This is the mail archive of the gdb-patches@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]

[PATCH D] FYI - Fix build failure on master caught by buildbots


FYI, this has been committed.  Another patch was committed out of
order from its original series as obvious, but I didn't catch the
missing dependency between it the previous patch.

Apologies for that, I'll try to check more tentatively next time.

Regards,
Iain.

--
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]