Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/date.h
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2023-04-08 12:35:24 +0300
committerJunio C Hamano <gitster@pobox.com>2023-04-10 18:46:40 +0300
commit8a7f0b666fc749166421669fba62b1000321bd26 (patch)
treef3e5a25ccaa39712eb8d99af80522cef55cb3b94 /date.h
parent73876f4861cd3d187a4682290ab75c9dccadbc56 (diff)
date: remove approxidate_relative()
When 29f4332e66 (Quit passing 'now' to date code, 2019-09-11) removed its timeval parameter, approxidate_relative() became equivalent to approxidate(). Convert its last two call sites and remove the redundant function. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'date.h')
-rw-r--r--date.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/date.h b/date.h
index 5d4eaba0a9..6136212a19 100644
--- a/date.h
+++ b/date.h
@@ -68,7 +68,6 @@ int parse_expiry_date(const char *date, timestamp_t *timestamp);
void datestamp(struct strbuf *out);
#define approxidate(s) approxidate_careful((s), NULL)
timestamp_t approxidate_careful(const char *, int *);
-timestamp_t approxidate_relative(const char *date);
int date_overflows(timestamp_t date);
time_t tm_to_time_t(const struct tm *tm);
#endif