[clang] implement CWG2064: ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
Readds a few test cases from da98651
Fixes #61818
[clang] implement CWG2064: ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
Readds a few test cases from da98651
Fixes #61818
Broken on sparc64 for multiple releases.
Dies during linking:
/usr/local/lib/libmpq.so.0.0: undefined reference to `__builtin_bswap16'
/usr/local/lib/libmpq.so.0.0: undefined reference to `__builtin_bswap32'
/usr/local/lib/libmpq.so.0.0: undefined reference to `__builtin_bswap64'
Mark BROKEN-sparc64
[Clang] Fix concept cache for normalized fold expressions (#190312)
When both outer and inner pack substitution indexes are present, we
should cache both. Otherwise we will have wrong cached result.
This is a regression fix so no release note.
Fixes https://github.com/llvm/llvm-project/issues/190169
[clang] implement CWG2064: ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
Readds a few test cases from da98651
Fixes #61818
devel/task: update to 3.49.1
v3.49.1
* Reverted #2632 for now, which caused some regressions. That change will
be reworked.
v3.49.0
* Fixed included Taskfiles with watch: true not triggering watch mode when
called from the root Taskfile.
* Fixed Remote Git Taskfiles failing on Windows due to backslashes in URL
paths.
* Fixed Remote Git Taskfiles timing out when resolving includes after
accepting the trust prompt.
* Fixed unclear error message when Taskfile search stops at a directory
ownership boundary.
* Fixed global variables from imported Taskfiles not resolving ref: values
correctly.
[2 lines not shown]
cskk: update to 3.3.0
Fixed
* Fix an issue that the whole dictionary contents are returned as
candidates list when completing empty headword.
Completing empty headword is now ignored.
* Fix an issue that C-g did not reset to Direct mode when back to previous
conversion mode by 'x' key in candidates selection.
* Fix an issue that C-g did not reset to Direct mode when negative index
was added to skk_context_select_candidate_at_rs.
Added
* Add a command in the default rule file to abort by C-g when in
abbreviation mode.
It does not added to already installed rules unless it is added manually
to ~/.local/share/libcskk/rules.
[clang] diagnose block pointer types as invalid for constant template parameters (#190464)
Fixes a crash by making it ill-formed to have a constant template
parameter with a block pointer type.
Fixes #189247
mailsend-go: update to 1.0.11
v1.0.11
* Fixed duplicate charset in Content-Type header. Resolved issue where
http.DetectContentType() was adding charset=utf-8 to the MIME type, causing
duplicate charset parameters in headers. The MIME type detection code now
strips charset params, letting gomail handle charset assignment based on
the -cs flag. Added more test scripts in test/ dir.
(Jan-16-2026)
* Update document about oauth-helper. Switch to markdown-toc-go from
markdown_helper for document generation. Add oauth-helper link at the end
of usage.
(Apr-01-2026)
v1.0.11-b2
[43 lines not shown]
iosevka-*: update to 34.3.0
* Add narrow bent hook variants for f, j, r, and t.
* Add crossbar-at-half-ascender-height variants for f.
* Add motion-bottom-serifed variants for q.
* Add middle-serifed-half-ascender variants for long-s (ſ) and lower eszett (ß).
* Add serifed variants for Greek Lower Gamma (γ).
* Add diagonal-tailed variant for Greek Lower Pi (π).
* Add short-neck and short-neck2 variants for Greek Lower Phi (φ) and Psi (ψ).
* Add dense variants for ellipsis.
* Add IPA localization forms for Greek Lower Lambda (λ) and Psi (ψ).
* Refine shape of the following characters:
* CYRILLIC CAPITAL LETTER DJE (U+0402).
* CYRILLIC CAPITAL LETTER TSHE (U+040B).
* CYRILLIC CAPITAL LETTER PSI (U+0470).
* CYRILLIC SMALL LETTER PSI (U+0471).
* MODIFIER LETTER RAISED INVERTED EXCLAMATION MARK (U+A71E).
* MODIFIER LETTER DENTAL CLICK (U+107B6).
* MODIFIER LETTER LATERAL CLICK (U+107B7).
* MODIFIER LETTER ALVEOLAR CLICK (U+107B8).
[clang] ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
Fixes #61818