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.txx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bdep/git.txx') diff --git a/bdep/git.txx b/bdep/git.txx index 19a9d42..4abae3c 100644 --- a/bdep/git.txx +++ b/bdep/git.txx @@ -6,7 +6,7 @@ namespace bdep { template void - run_git (const standard_version& min_ver, const dir_path& repo, A&&... args) + run_git (const semantic_version& min_ver, const dir_path& repo, A&&... args) { process pr (start_git (min_ver, repo, @@ -17,11 +17,11 @@ namespace bdep } void - git_check_version (const standard_version& min_ver); + git_check_version (const semantic_version& min_ver); template process - start_git (const standard_version& min_ver, + start_git (const semantic_version& min_ver, I&& in, O&& out, E&& err, A&&... args) { @@ -34,7 +34,7 @@ namespace bdep template optional - git_line (const standard_version& min_ver, bool ie, A&&... args) + git_line (const semantic_version& min_ver, bool ie, A&&... args) { fdpipe pipe (fdopen_pipe ()); auto_fd null (ie ? fdnull () : auto_fd ()); -- cgit v1.1