Skip to content

Commit

Permalink
gh-303 Remove explicit declaration of initial value of status code
Browse files Browse the repository at this point in the history
  • Loading branch information
dshil committed Nov 15, 2023
1 parent 01a86a3 commit cd61906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal_modules/roc_status/status_code.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace status {

//! Status code.
enum StatusCode {
StatusOK = 0, //!< Status indicating a success of an operation.
StatusOK, //!< Status indicating a success of an operation.
StatusUnknown, //!< Unknown status.
StatusNoData, //!< There is no enough data to perform an operation.
};
Expand Down

0 comments on commit cd61906

Please sign in to comment.