This is an automated email from the ASF dual-hosted git repository.

amc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 52c7298  gcc9 - fix CryptoHash.h
52c7298 is described below

commit 52c729821096293bf54889f765622b9d49672e63
Author: Alan M. Carroll <[email protected]>
AuthorDate: Mon May 6 11:23:34 2019 -0500

    gcc9 - fix CryptoHash.h
---
 include/tscore/CryptoHash.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/tscore/CryptoHash.h b/include/tscore/CryptoHash.h
index 1cb7848..27077ad 100644
--- a/include/tscore/CryptoHash.h
+++ b/include/tscore/CryptoHash.h
@@ -45,6 +45,8 @@ union CryptoHash {
 
   /// Default constructor - init to zero.
   CryptoHash() { memset(this, 0, sizeof(*this)); }
+  /// Copy constructor.
+  CryptoHash(CryptoHash const &that) = default;
 
   /// Assignment - bitwise copy.
   CryptoHash &

Reply via email to