diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-04-10 17:33:18 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-04-10 17:33:18 -0700 |
commit | 3ffbdd712f0413ce4964d626c5e10533f1f74893 (patch) | |
tree | 7415f8ec199c061aaee330b958a1204817a37f67 /src | |
parent | 667f4a6282f9d7e7edb0acc8758e384b17a0359d (diff) | |
parent | 0a902ee0acabf15f7d5f21b4d6ea0574495488f6 (diff) |
Merge pull request #1400 from jskeet/fix-internal
Fix to csharp_options - initialize internal_access to false.
Diffstat (limited to 'src')
-rw-r--r-- | src/google/protobuf/compiler/csharp/csharp_options.h | 3 |
1 files changed, 2 insertions, 1 deletions
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; |