summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authordgregor <dgregor@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-21 14:18:52 +0000
committerdgregor <dgregor@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-21 14:18:52 +0000
commit55eb21167a2d29e10e7055ca0e8dc9d21ddf0620 (patch)
tree1a750db3ecbf42ef9fc736322bb357616858196a /gcc
parente4da226bf16aef4cdcd2841e04cc70f96ba7f409 (diff)
downloadgcc-55eb21167a2d29e10e7055ca0e8dc9d21ddf0620.tar.gz
Completed this ChangeLog entry:
2005-07-20 Douglas Gregor <doug.gregor@gmail.com> PR c++/2922 * semantics.c (perform_koenig_lookup): For dependent calls, just return the set of functions we've found so far. Later, it will be augmented by those found through argument-dependent lookup. * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing the optimization that skips namespaces where the functions were originally found. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102234 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index efac769b8fa..31c93f9adc2 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -11,7 +11,9 @@
* semantics.c (perform_koenig_lookup): For dependent calls, just
return the set of functions we've found so far. Later, it will be
augmented by those found through argument-dependent lookup.
- * name-lookup.c (lookup_arg_dependent):
+ * name-lookup.c (lookup_arg_dependent): Implement DR 164 by removing
+ the optimization that skips namespaces where the functions were
+ originally found.
2005-07-20 Giovanni Bajo <giovannibajo@libero.it>