diff options
Diffstat (limited to 'src/other_tools/git_operations')
-rw-r--r-- | src/other_tools/git_operations/git_ops_types.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/other_tools/git_operations/git_ops_types.hpp b/src/other_tools/git_operations/git_ops_types.hpp index 0b9f50c4..f36c18c3 100644 --- a/src/other_tools/git_operations/git_ops_types.hpp +++ b/src/other_tools/git_operations/git_ops_types.hpp @@ -26,8 +26,8 @@ /// \brief Common parameters for all critical Git operations struct GitOpParams { - std::filesystem::path target_path{}; /*key*/ - std::string git_hash{}; /*key*/ + std::filesystem::path target_path; /*key*/ + std::string git_hash; /*key*/ std::optional<std::string> message{ std::nullopt}; // mandatory for commits and tags std::optional<std::filesystem::path> source_path{ |