Commit 3ffbdd71 authored by Jan Tattermusch's avatar Jan Tattermusch

Merge pull request #1400 from jskeet/fix-internal

Fix to csharp_options - initialize internal_access to false.
parents 667f4a62 0a902ee0
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment