Commit 0a902ee0 authored by Jon Skeet's avatar Jon Skeet

Fix to csharp_options - initialize internal_access to false.

parent 667f4a62
......@@ -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