diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/other_tools/git_operations/git_ops_types.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/git_operations/git_ops_types.hpp b/src/other_tools/git_operations/git_ops_types.hpp index f36c18c3..70553f04 100644 --- a/src/other_tools/git_operations/git_ops_types.hpp +++ b/src/other_tools/git_operations/git_ops_types.hpp @@ -68,7 +68,7 @@ struct GitOpValue { // used to continue with non-critical ops on same odb, if needed GitCASPtr git_cas{nullptr}; // stores result of certain operations; always nullopt if failure - std::optional<std::string> result{""}; + std::optional<std::string> result = std::nullopt; }; #endif // INCLUDED_SRC_OTHER_TOOLS_GIT_OPERATIONS_GIT_OPS_TYPES_HPP |