From bbf71f8f7d954f508527a5f5f49ac2306debe89a Mon Sep 17 00:00:00 2001 From: Henk-Jan Lebbink Date: Mon, 18 Mar 2024 09:55:39 +0100 Subject: [PATCH] update time due to rebase --- include/credentials.h | 4 ++-- include/types.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/credentials.h b/include/credentials.h index 2567d40..8b6c1b9 100644 --- a/include/credentials.h +++ b/include/credentials.h @@ -55,12 +55,12 @@ struct Credentials { Credentials(error::Error err, std::string&& access_key, std::string&& secret_key, std::string&& session_token, - utils::Time expiration) + utils::UtcTime expiration) : err(err), access_key(std::move(access_key)), secret_key(std::move(secret_key)), session_token(std::move(session_token)), - expiration(expiration) {} + expiration(std::move(expiration)) {} ~Credentials() = default; diff --git a/include/types.h b/include/types.h index d0bbaa4..f972a82 100644 --- a/include/types.h +++ b/include/types.h @@ -318,7 +318,7 @@ struct Bucket { utils::UtcTime creation_date; Bucket() = default; - Bucket(std::string&& name, utils::Time&& creation_date) + Bucket(std::string&& name, utils::UtcTime&& creation_date) : name(std::move(name)), creation_date(std::move(creation_date)) {} ~Bucket() = default; }; // struct Bucket