Skip to content

Commit

Permalink
update time due to rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
HJLebbink committed Mar 18, 2024
1 parent efdb509 commit bbf71f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/credentials.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion include/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bbf71f8

Please sign in to comment.