Commit e46dd349 authored by Dominik Charousset's avatar Dominik Charousset

Document fix for #1245

parent 3fe3d5e3
...@@ -3,6 +3,16 @@ ...@@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file. The format All notable changes to this project will be documented in this file. The format
is based on [Keep a Changelog](https://keepachangelog.com). is based on [Keep a Changelog](https://keepachangelog.com).
## [Unreleased]
### Fixed
- For types that offer implicit type conversion, trying to construct a
`result<T>` could result in ambiguity since compilers could construct either
`T` itself or `expected<T>` for calling a constructor of `result<T>`. To fix
the ambiguity, `result<T>` now accepts any type that allows constructing a `T`
internally without requiring a type conversion to `T` as an argument (#1245).
## [0.18.2] - 2021-03-26 ## [0.18.2] - 2021-03-26
### Added ### Added
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment