Skip to content

Commit

Permalink
iox-eclipse-iceoryx#1969 Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido authored and musamaanjum committed Jun 21, 2023
1 parent 7c99447 commit 71684e7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doc/website/release-notes/iceoryx-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -1136,3 +1136,12 @@
// after
return iox::err(MyCustomError::ERROR_CODE);
```

51. `expected::get_error` is deprecated in favour of `expected::error`

```cpp
// before
auto e = exp.get_error();

// after
auto e = exp.error();

0 comments on commit 71684e7

Please sign in to comment.