[Bug c++/100975] [C++23] Allow pointer to array of auto

2021-06-30 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100975 Marek Polacek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/100975] [C++23] Allow pointer to array of auto

2021-06-30 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100975 --- Comment #3 from CVS Commits --- The master branch has been updated by Marek Polacek : https://gcc.gnu.org/g:e66d0b7b87d105d24da8c4784a0b907fb6b2c095 commit r12-1933-ge66d0b7b87d105d24da8c4784a0b907fb6b2c095 Author: Marek Polacek Date: T

[Bug c++/100975] [C++23] Allow pointer to array of auto

2021-06-29 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100975 Marek Polacek changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |mpolacek at gcc dot gnu.org

[Bug c++/100975] [C++23] Allow pointer to array of auto

2021-06-25 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100975 --- Comment #2 from Marek Polacek --- Looks like just disabling the check in create_array_type_for_decl lets us compile: struct false_type { static constexpr bool value = false; }; struct true_type { static constexpr bool value = true; }; templ

[Bug c++/100975] [C++23] Allow pointer to array of auto

2021-06-08 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100975 --- Comment #1 from Jason Merrill --- int a[3]; auto (*p)[3] = &a;

[Bug c++/100975] [C++23] Allow pointer to array of auto

2021-06-08 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100975 Marek Polacek changed: What|Removed |Added CC||mpolacek at gcc dot gnu.org Ever co