Skip to content

Commit 9f6abab

Browse files
authored
Initialize the OptionInfo in the ESI plugin using default member initializer (#12315)
1 parent 0d4d981 commit 9f6abab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plugins/esi/esi.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ using namespace EsiLib;
5252
using namespace Stats;
5353

5454
struct OptionInfo {
55-
bool packed_node_support;
56-
bool private_response;
57-
bool disable_gzip_output;
58-
bool first_byte_flush;
55+
bool packed_node_support{false};
56+
bool private_response{false};
57+
bool disable_gzip_output{false};
58+
bool first_byte_flush{false};
5959
unsigned max_inclusion_depth{3};
6060
};
6161

0 commit comments

Comments
 (0)