@@ -703,8 +703,7 @@ class Context : public ContextBase {
703
703
//
704
704
// Returns `FilterStatus` indicating whether processing of the connection
705
705
// should continue or pause until a later call to `continueDownstream`.
706
- virtual FilterStatus onDownstreamData (size_t /* data_size */ ,
707
- bool /* end_of_stream */ ) {
706
+ virtual FilterStatus onDownstreamData (size_t /* data_size */ , bool /* end_of_stream */ ) {
708
707
return FilterStatus::Continue;
709
708
}
710
709
@@ -716,8 +715,7 @@ class Context : public ContextBase {
716
715
//
717
716
// Returns `FilterStatus` indicating whether processing of the connection
718
717
// should continue or pause until a later call to `continueUpstream`.
719
- virtual FilterStatus onUpstreamData (size_t /* data_size */ ,
720
- bool /* end_of_stream */ ) {
718
+ virtual FilterStatus onUpstreamData (size_t /* data_size */ , bool /* end_of_stream */ ) {
721
719
return FilterStatus::Continue;
722
720
}
723
721
@@ -1583,9 +1581,13 @@ template <> inline std::string toString(std::string t) { return t; }
1583
1581
1584
1582
template <> inline std::string toString (bool t) { return t ? " true" : " false" ; }
1585
1583
1586
- template <typename T> struct StringToStringView { typedef T type; };
1584
+ template <typename T> struct StringToStringView {
1585
+ typedef T type;
1586
+ };
1587
1587
1588
- template <> struct StringToStringView <std::string> { typedef std::string_view type; };
1588
+ template <> struct StringToStringView <std::string> {
1589
+ typedef std::string_view type;
1590
+ };
1589
1591
1590
1592
inline uint32_t MetricBase::resolveFullName (const std::string &n) {
1591
1593
auto it = metric_ids.find (n);
0 commit comments