Skip to content

Commit

Permalink
iox-eclipse-iceoryx#2066 Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Nov 20, 2023
1 parent ca59243 commit 1ad2011
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions doc/website/release-notes/iceoryx-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -1244,3 +1244,8 @@
IOX_EXPECTS(foo == true);
IOX_ENSURES(foo == true);
```

55. `IOX_MAYBE_UNUSED`, `IOX_FALLTHROUGH` and `IOX_NO_DISCARD` are deprecated

With the switch to C++17 `[[maybe_unused]]`, `[[fallthrough]]` and `[[no_discard]]`
are available and should be used instead of the macros.
2 changes: 1 addition & 1 deletion iceoryx_hoofs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ The module structure is a logical grouping. It is replicated for `concurrent` an
|:---------------------:|:--------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|`type_traits` | | Extended support for evaluating types on compile-time. |
|`types` | | Declares essential building block types like `byte`. |
|`attributes` | | C++17 and C++20 attributes are sometimes available through compiler extensions. The attribute macros defined in here (like `IOX_FALLTHROUGH`, `IOX_MAYBE_UNUSED` ... ) make sure that we are able to use them if the compiler supports it. |
|`attributes` | | C++20 and C++23 attributes are sometimes available through compiler extensions. The attribute macros defined in here make sure that we are able to use them if the compiler supports it. |
|`algorithm` | | Implements `min` and `max` for an arbitrary number of values of the same type. For instance `min(1,2,3,4,5);` |
|`size` | | Helper functions to determine the size in generic ways |

Expand Down

0 comments on commit 1ad2011

Please sign in to comment.