Skip to content

Commit 1e8009d

Browse files
committed
Remove explicit nullptr initialization
1 parent 28a4eb9 commit 1e8009d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws-cpp-sdk-core/include/aws/core/AmazonWebServiceRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace Aws
3636
typedef std::function<void(const Aws::Http::HttpRequest&)> RequestSignedHandler;
3737

3838
struct RetryContext {
39-
std::shared_ptr<std::pair<Aws::String, std::shared_ptr<Aws::Utils::Crypto::Hash>>> m_requestHash = nullptr;
39+
std::shared_ptr<std::pair<Aws::String, std::shared_ptr<Aws::Utils::Crypto::Hash>>> m_requestHash;
4040
};
4141

4242
/**

0 commit comments

Comments
 (0)