You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2019/05/06 22:27:23 UTC

[trafficserver] branch master updated: Fix ContFlags for gcc 9.

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 8ea4bc4  Fix ContFlags for gcc 9.
8ea4bc4 is described below

commit 8ea4bc44d531ae1f7276961ffd7a4b1d5905bc0f
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Mon May 6 09:31:43 2019 -0500

    Fix ContFlags for gcc 9.
---
 include/tscore/ContFlags.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/tscore/ContFlags.h b/include/tscore/ContFlags.h
index 11fd7c4..f23822e 100644
--- a/include/tscore/ContFlags.h
+++ b/include/tscore/ContFlags.h
@@ -42,6 +42,7 @@ public:
   enum flags { DEBUG_OVERRIDE = 0, DISABLE_PLUGINS = 1, LAST_FLAG };
 
   ContFlags() {}
+  ContFlags(ContFlags const &that) = default;
   ContFlags(uint32_t in_flags) : raw_flags(in_flags) {}
   void
   set_flags(uint32_t new_flags)