From 8d75c30dcaa1e216e8a2bfe38779aef1915232a2 Mon Sep 17 00:00:00 2001 From: Laserlicht <13953785+Laserlicht@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:54:45 +0100 Subject: [PATCH] remove default value --- include/vstd/DateUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vstd/DateUtils.h b/include/vstd/DateUtils.h index 70fd2ff45..6d4ae0773 100644 --- a/include/vstd/DateUtils.h +++ b/include/vstd/DateUtils.h @@ -5,7 +5,7 @@ VCMI_LIB_NAMESPACE_BEGIN namespace vstd { - DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt, std::string format = ""); + DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt, std::string format); DLL_LINKAGE std::string getDateTimeISO8601Basic(std::time_t dt); }