This is an automated email from the ASF dual-hosted git repository.
bcall 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 6c9f8ff gcc9: Added default assignment operator
6c9f8ff is described below
commit 6c9f8ff8e1ade858d1ba542f68dc69aa2d9ca6b0
Author: Bryan Call <[email protected]>
AuthorDate: Fri May 10 11:20:54 2019 -0700
gcc9: Added default assignment operator
---
proxy/HostStatus.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/proxy/HostStatus.h b/proxy/HostStatus.h
index 2fdc33c..b8030bf 100644
--- a/proxy/HostStatus.h
+++ b/proxy/HostStatus.h
@@ -125,6 +125,8 @@ struct HostStatRec {
}
~HostStatRec() {}
+ HostStatRec &operator=(const HostStatRec &source) = default;
+
// serialize this HostStatusRec
std::stringstream &
operator<<(std::stringstream &os)