From 8e5f53fd249f08b0be0a7d4eec65f425cfb79eae Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 14 Aug 2018 19:28:54 +0300 Subject: Adapt to git_version() returning semantic_version now --- bdep/git.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bdep/git.hxx') diff --git a/bdep/git.hxx b/bdep/git.hxx index 6b112c8..fcc9513 100644 --- a/bdep/git.hxx +++ b/bdep/git.hxx @@ -21,11 +21,11 @@ namespace bdep // template process - start_git (const standard_version&, I&& in, O&& out, E&& err, A&&... args); + start_git (const semantic_version&, I&& in, O&& out, E&& err, A&&... args); template process - start_git (const standard_version&, + start_git (const semantic_version&, const dir_path& repo, I&& in, O&& out, E&& err, A&&... args); @@ -39,18 +39,18 @@ namespace bdep // template void - run_git (const standard_version&, const dir_path& repo, A&&... args); + run_git (const semantic_version&, const dir_path& repo, A&&... args); // Return the first line of the git output. If ignore_error is true, then // suppress stderr, ignore (normal) error exit status, and return nullopt. // template optional - git_line (const standard_version&, bool ignore_error, A&&... args); + git_line (const semantic_version&, bool ignore_error, A&&... args); template optional - git_line (const standard_version&, + git_line (const semantic_version&, const dir_path& repo, bool ignore_error, A&&... args); -- cgit v1.1