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 40e70ce  Fixed build issue with Ubuntu 16 debug
40e70ce is described below

commit 40e70ce3ef100a09a95dd01f89cdef2d61c2231b
Author: Bryan Call <bc...@apache.org>
AuthorDate: Wed Mar 25 11:16:57 2020 -0700

    Fixed build issue with Ubuntu 16 debug
---
 include/tscore/PluginUserArgs.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/tscore/PluginUserArgs.h b/include/tscore/PluginUserArgs.h
index a8921fa..7f91945 100644
--- a/include/tscore/PluginUserArgs.h
+++ b/include/tscore/PluginUserArgs.h
@@ -28,12 +28,12 @@
 #include "tscore/ink_assert.h"
 #include "tscore/PluginUserArgs.h"
 
-static constexpr std::array<size_t, TS_USER_ARGS_COUNT> MAX_USER_ARGS = {
+static constexpr std::array<size_t, TS_USER_ARGS_COUNT> MAX_USER_ARGS = {{
   16, /* max number of user arguments for TXN */
   8,  /* max number of user arguments for SSN */
   4,  /* max number of user arguments for VCONN */
   128 /* max number of user arguments for GLB */
-};
+}};
 
 /**
   This is a mixin class (sort of), implementing the appropriate APIs and data 
storage for

Reply via email to