mirror of
https://github.com/boostorg/phoenix.git
synced 2026-02-02 21:12:13 +00:00
8bd4765b401e2d61ddb328b3e8fa39ff3bbcc600
In some cases, result type deduction is failed due to specialization
restricts to const cv-ref even though doesn't change it.
```
const char X = 'x';
phx::find(boost::as_literal("fox"), arg1)(X); // works
char X = 'x';
phx::find(boost::as_literal("fox"), arg1)(X); // should be accepted, but...
```
Description
Mirrored via gitea-mirror
Languages
C++
100%