You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2021/11/08 23:03:04 UTC

[trafficserver] branch 9.2.x updated: clang 13: Added default assignment operator (#8494)

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

zwoop pushed a commit to branch 9.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.2.x by this push:
     new 896c2a9  clang 13: Added default assignment operator (#8494)
896c2a9 is described below

commit 896c2a966e1867166b97d7b0e001498ab50785ec
Author: Bryan Call <bc...@apache.org>
AuthorDate: Mon Nov 8 10:44:11 2021 -0800

    clang 13: Added default assignment operator (#8494)
    
    (cherry picked from commit ff299716842c65cc77ff8a290a9a3bc9a6931fad)
---
 include/tscore/Extendible.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/tscore/Extendible.h b/include/tscore/Extendible.h
index b30fdd9..2cae57f 100644
--- a/include/tscore/Extendible.h
+++ b/include/tscore/Extendible.h
@@ -284,6 +284,7 @@ public:
   FieldId(ext::details::FieldDesc const &);
   FieldId() {}
   FieldId(FieldId const &) = default;
+  FieldId &operator=(FieldId const &) = default;
 };
 
 namespace details