aboutsummaryrefslogtreecommitdiff
path: root/bdep/git.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-08-14 19:28:54 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-08-14 19:28:54 +0300
commit8e5f53fd249f08b0be0a7d4eec65f425cfb79eae (patch)
tree247b5321b3fda46c390525fab1cc194e64c20ddb /bdep/git.hxx
parentfc9dbf81953ebe3b0757638671eb31787f4f387d (diff)
Adapt to git_version() returning semantic_version now
Diffstat (limited to 'bdep/git.hxx')
-rw-r--r--bdep/git.hxx10
1 files changed, 5 insertions, 5 deletions
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 <typename I, typename O, typename E, typename... A>
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 <typename I, typename O, typename E, typename... A>
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 <typename... A>
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 <typename... A>
optional<string>
- git_line (const standard_version&, bool ignore_error, A&&... args);
+ git_line (const semantic_version&, bool ignore_error, A&&... args);
template <typename... A>
optional<string>
- git_line (const standard_version&,
+ git_line (const semantic_version&,
const dir_path& repo,
bool ignore_error,
A&&... args);