Anderes datumsformat.

This commit is contained in:
tastytea 2019-03-08 14:46:47 +01:00
parent 35c5c12697
commit f44f6b0e47
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07

View File

@ -144,8 +144,8 @@ int main()
try
{
string year = get_date(system_clock::now(), "%Y");
string today = get_date(system_clock::now(), "%F");
string tomorrow = get_date(system_clock::now() + hours(24), "%F");
string today = get_date(system_clock::now(), "%d.%m.%Y");
string tomorrow = get_date(system_clock::now() + hours(24), "%d.%m.%Y");
curlpp::Easy request;
std::stringstream ss;