Skip to content

Commit

Permalink
Bug fix: The status enumeration used to track state internally did
Browse files Browse the repository at this point in the history
not list all possible enum values. This caused static analysers to complain.
  • Loading branch information
ned14 committed Aug 14, 2024
1 parent 60147ab commit 6cf2d43
Show file tree
Hide file tree
Showing 6 changed files with 326 additions and 771 deletions.
3 changes: 3 additions & 0 deletions doc/src/content/changelog/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ with display of `strerror()` if the code domain is POSIX or generic.

### Bug fixes:

- The `status` enumeration used to track state internally did not list all possible enum
values. This caused static analysers to complain.

---
## v2.2.9 15th April 2024 (Boost 1.85) [[release]](https://github.com/ned14/outcome/releases/tag/v2.2.9)

Expand Down
6 changes: 3 additions & 3 deletions include/outcome/detail/revision.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ Distributed under the Boost Software License, Version 1.0.
*/

// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
#define OUTCOME_PREVIOUS_COMMIT_REF f5a45b6909e732174fe98e59548914bcaa67d847
#define OUTCOME_PREVIOUS_COMMIT_DATE "2024-06-21 11:40:22 +00:00"
#define OUTCOME_PREVIOUS_COMMIT_UNIQUE f5a45b69
#define OUTCOME_PREVIOUS_COMMIT_REF 60147ab3146f0418b10a6a4671ea0802cb514432
#define OUTCOME_PREVIOUS_COMMIT_DATE "2024-08-14 16:41:50 +00:00"
#define OUTCOME_PREVIOUS_COMMIT_UNIQUE 60147ab3
Loading

0 comments on commit 6cf2d43

Please sign in to comment.