aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDoug Gregor <dgregor@gcc.gnu.org>2005-07-21 14:18:52 +0000
committerDoug Gregor <dgregor@gcc.gnu.org>2005-07-21 14:18:52 +0000
commitf339fc8e61aee401cc4d811de6e7dba6a6635bc6 (patch)
tree1a750db3ecbf42ef9fc736322bb357616858196a /gcc
parent2e48874fee767eb93625681f09067852a41540c9 (diff)
downloadgcc-f339fc8e61aee401cc4d811de6e7dba6a6635bc6.zip
gcc-f339fc8e61aee401cc4d811de6e7dba6a6635bc6.tar.gz
gcc-f339fc8e61aee401cc4d811de6e7dba6a6635bc6.tar.bz2
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. From-SVN: r102234
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 efac769..31c93f9 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>