diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-27 16:32:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-27 16:32:08 +0200 |
commit | 5bf2dd09110f257acc730eab71301e1dede1c710 (patch) | |
tree | 291da1bd5a9aac4cdb50efe0c4884bebf75e4d82 /mod/mod-repository-details.cxx | |
parent | 758b66cf9ce32c44b37cd7e2c65b71d89c0240bf (diff) |
Suppress (potential) bogus GCC 12 -Wrestrict warnings
Diffstat (limited to 'mod/mod-repository-details.cxx')
-rw-r--r-- | mod/mod-repository-details.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/mod-repository-details.cxx b/mod/mod-repository-details.cxx index ce7582e..1cbb5cb 100644 --- a/mod/mod-repository-details.cxx +++ b/mod/mod-repository-details.cxx @@ -100,7 +100,7 @@ handle (request& rq, response& rs) // string id (html_id (r.canonical_name)); s << H1(ID=id) - << A(HREF="#" + web::mime_url_encode (id, false)) + << A(HREF='#' + web::mime_url_encode (id, false)) << r.display_name << ~A << ~H1; |