This is an automated email from the ASF dual-hosted git repository.
wkaras 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 1841937ff1 Remove unused _setFunc parameter to LogField constructor
overload. (#11440)
1841937ff1 is described below
commit 1841937ff1cc4d9710c817937d8eaa8d0e39f1db
Author: Walt Karas <[email protected]>
AuthorDate: Tue Jun 11 09:49:04 2024 -0400
Remove unused _setFunc parameter to LogField constructor overload. (#11440)
---
include/proxy/logging/LogField.h | 2 +-
src/proxy/logging/LogField.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/proxy/logging/LogField.h b/include/proxy/logging/LogField.h
index 83daebebad..111aaa6937 100644
--- a/include/proxy/logging/LogField.h
+++ b/include/proxy/logging/LogField.h
@@ -131,7 +131,7 @@ public:
LogField(const char *name, const char *symbol, Type type, MarshalFunc
marshal, UnmarshalFuncWithMap unmarshal,
const Ptr<LogFieldAliasMap> &map, SetFunc _setFunc = nullptr);
- LogField(const char *field, Container container, SetFunc _setFunc = nullptr);
+ LogField(const char *field, Container container);
LogField(const LogField &rhs);
~LogField();
diff --git a/src/proxy/logging/LogField.cc b/src/proxy/logging/LogField.cc
index 9e02c4c721..0373ec6dee 100644
--- a/src/proxy/logging/LogField.cc
+++ b/src/proxy/logging/LogField.cc
@@ -327,7 +327,7 @@ LogField::milestones_from_m_name(TSMilestonesType *ms1,
TSMilestonesType *ms2)
}
// Container field ctor
-LogField::LogField(const char *field, Container container, SetFunc _setfunc)
+LogField::LogField(const char *field, Container container)
: m_name(ats_strdup(field)),
m_symbol(ats_strdup(container_names[container])),
m_type(LogField::STRING),