[Bug c++/109679] export using for functions does not work as specified

2024-01-27 Thread nshead at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109679

--- Comment #6 from Nathaniel Shead  ---
*** Bug 113129 has been marked as a duplicate of this bug. ***

[Bug c++/109679] export using for functions does not work as specified

2024-01-27 Thread nshead at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109679

Nathaniel Shead  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Assignee|unassigned at gcc dot gnu.org  |nshead at gcc dot 
gnu.org
 Status|NEW |RESOLVED
   Target Milestone|--- |14.0
 CC||nshead at gcc dot gnu.org

--- Comment #5 from Nathaniel Shead  ---
Fixed for GCC 14.

[Bug c++/109679] export using for functions does not work as specified

2024-01-07 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109679

--- Comment #4 from GCC Commits  ---
The master branch has been updated by Nathaniel Shead :

https://gcc.gnu.org/g:63b531e6f8783e8624502d890dc422379de47a9a

commit r14-6978-g63b531e6f8783e8624502d890dc422379de47a9a
Author: Nathaniel Shead 
Date:   Wed Jan 3 15:29:51 2024 +1100

c++: Export usings referring to global module fragment [PR109679]

This patch stops 'add_binding_entity' from ignoring all names in the
global module fragment, since they should still be exported if named
in an exported using-declaration.

PR c++/109679

gcc/cp/ChangeLog:

* module.cc (depset::hash::add_binding_entity): Don't skip names
in the GMF if they've been exported with a using declaration.

gcc/testsuite/ChangeLog:

* g++.dg/modules/using-11.h: New test.
* g++.dg/modules/using-11_a.C: New test.
* g++.dg/modules/using-11_b.C: New test.

Signed-off-by: Nathaniel Shead 

[Bug c++/109679] export using for functions does not work as specified

2023-12-25 Thread admin at hexadigm dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109679

Larry Smith  changed:

   What|Removed |Added

 CC||admin at hexadigm dot com

--- Comment #3 from Larry Smith  ---
Likely the same issue I reported here (didn't see yours before posting):

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113129

[Bug c++/109679] export using for functions does not work as specified

2023-05-02 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109679

Jonathan Wakely  changed:

   What|Removed |Added

   Last reconfirmed||2023-05-02
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||rejects-valid

--- Comment #2 from Jonathan Wakely  ---
Confirmed.

testfoo.cpp: In function 'int main()':
testfoo.cpp:5:10: error: 'foo' was not declared in this scope
5 |   return foo();
  |  ^~~

[Bug c++/109679] export using for functions does not work as specified

2023-04-29 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109679

--- Comment #1 from Andrew Pinski  ---
modules in GCC is still an experimental feature really. And still being
developed.