Re: [wwwdocs] [PATCH 0/4] Fix various typos

2022-03-29 Thread Pokechu22 via Gcc-patches
In case it's helpful, I've included copies of the patches as attachments (as well as a single patch that is all of these changes merged together). --Poke On Tue, Mar 22, 2022 at 12:50 PM Pokechu22 wrote: > > While working on a separate patch, I found several typos on the website. > I have only l

Re: [PATCH] c++: call complete_type after performing auto deduction [PR80351]

2022-03-28 Thread Pokechu22 via Gcc-patches
On Thu, Mar 24, 2022 at 1:53 PM Jason Merrill wrote: > Thanks! For future reference, the patch doesn't apply easily because > gmail wrapped lines; for sending patches via gmail you'll need to use > attachments. Or you can use another MUA, or git send-email. This time > I fixed the wrapping by h

[PATCH] c++: call complete_type after performing auto deduction [PR80351]

2022-03-23 Thread Pokechu22 via Gcc-patches
When cp_finish_decl calls cp_apply_type_quals_to_decl on a const auto or constexpr auto variable, the type might not be complete the first time (this happened when auto deduces to an initializer_list). cp_apply_type_quals_to_decl removes the const qualifier if the type is not complete, which is app

[wwwdocs] [PATCH 4/4] contribute: Fix various typos

2022-03-22 Thread Pokechu22 via Gcc-patches
--- htdocs/contribute.html | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/contribute.html b/htdocs/contribute.html index c0223738..2d04b1f0 100644 --- a/htdocs/contribute.html +++ b/htdocs/contribute.html @@ -267,7 +267,7 @@ characters. The classifier identifi

[wwwdocs] [PATCH 3/4] codingrationale: Fix various typos

2022-03-22 Thread Pokechu22 via Gcc-patches
--- htdocs/codingrationale.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/codingrationale.html b/htdocs/codingrationale.html index 0b44f1da..f523f3e2 100644 --- a/htdocs/codingrationale.html +++ b/htdocs/codingrationale.html @@ -18,7 +18,7 @@ Inlining funct

[wwwdocs] [PATCH 2/4] codingconventions: Fix various typos

2022-03-22 Thread Pokechu22 via Gcc-patches
--- htdocs/codingconventions.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/codingconventions.html b/htdocs/codingconventions.html index e4d30510..86b63b89 100644 --- a/htdocs/codingconventions.html +++ b/htdocs/codingconventions.html @@ -141,7 +141,7 @@ a la

[wwwdocs] [PATCH 1/4] branch-closing: Fix various typos

2022-03-22 Thread Pokechu22 via Gcc-patches
--- htdocs/branch-closing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/branch-closing.html b/htdocs/branch-closing.html index c36ad1ab..15fb90e3 100644 --- a/htdocs/branch-closing.html +++ b/htdocs/branch-closing.html @@ -54,7 +54,7 @@ is listed in "Known to work

[wwwdocs] [PATCH 0/4] Fix various typos

2022-03-22 Thread Pokechu22 via Gcc-patches
While working on a separate patch, I found several typos on the website. I have only looked within the htdocs directory, not its subdirectories. These are individual patches per file, since that seemed reasonable to me. I believe this is a small enough change that I do not need to go through copy