2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-02 21:12:13 +00:00
Kohei Takahashi 8bd4765b40 Fix result type deduction failure.
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...
```
2016-09-01 00:55:25 +09:00
2016-08-20 12:08:10 +09:00
2016-02-21 01:06:19 +09:00
Description
Mirrored via gitea-mirror
5.1 MiB
Languages
C++ 100%