Skip to content

Commit 668352e

Browse files
committed
Changing variable type for consistency
Signed-off-by: Emilio Cuesta <emiliocuesta@eprosima.com>
1 parent 5c8e486 commit 668352e

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

cpp_utils/include/cpp_utils/ReturnCode.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,8 @@ class ReturnCode
8888
//! Link every ReturnCodeValue available with a string to deserialize
8989
static const std::map<ReturnCodeValue, std::string> to_string_conversion_;
9090

91-
//! \c ReturnCode value
92-
std::uint32_t value_;
93-
91+
//! \c ReturnCodeValue
92+
ReturnCodeValue value_;
9493

9594
// operator << needs access to the object
9695
CPP_UTILS_DllAPI

0 commit comments

Comments
 (0)