From 0a902ee0acabf15f7d5f21b4d6ea0574495488f6 Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Fri, 8 Apr 2016 09:57:32 +0100 Subject: Fix to csharp_options - initialize internal_access to false. --- src/google/protobuf/compiler/csharp/csharp_options.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/google/protobuf/compiler/csharp/csharp_options.h b/src/google/protobuf/compiler/csharp/csharp_options.h index f25812c8..426fb3b5 100644 --- a/src/google/protobuf/compiler/csharp/csharp_options.h +++ b/src/google/protobuf/compiler/csharp/csharp_options.h @@ -44,7 +44,8 @@ struct Options { Options() : file_extension(".cs"), base_namespace(""), - base_namespace_specified(false) { + base_namespace_specified(false), + internal_access(false) { } // Extension of the generated file. Defaults to ".cs" string file_extension; -- cgit v1.2.3