aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/compiler/csharp/csharp_generator.cc
diff options
context:
space:
mode:
authorJan Tattermusch <jtattermusch@google.com>2015-07-29 20:15:03 -0700
committerJan Tattermusch <jtattermusch@google.com>2015-07-30 14:54:09 -0700
commit43a2dee7085f91d7a7a55f21f0d6c474b7a83c7c (patch)
tree7be44c737bf985b2c9f2a56acb48a1a8069d16e4 /src/google/protobuf/compiler/csharp/csharp_generator.cc
parent12febd0a7611858eb026fab7eaf8a4d14c4eba80 (diff)
downloadprotobuf-43a2dee7085f91d7a7a55f21f0d6c474b7a83c7c.tar.gz
protobuf-43a2dee7085f91d7a7a55f21f0d6c474b7a83c7c.tar.bz2
protobuf-43a2dee7085f91d7a7a55f21f0d6c474b7a83c7c.zip
refactor umbrella class helpers
Diffstat (limited to 'src/google/protobuf/compiler/csharp/csharp_generator.cc')
-rw-r--r--src/google/protobuf/compiler/csharp/csharp_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/csharp/csharp_generator.cc b/src/google/protobuf/compiler/csharp/csharp_generator.cc
index f06d79d8..e0a6c83a 100644
--- a/src/google/protobuf/compiler/csharp/csharp_generator.cc
+++ b/src/google/protobuf/compiler/csharp/csharp_generator.cc
@@ -50,7 +50,7 @@ namespace csharp {
std::string GetOutputFile(const google::protobuf::FileDescriptor* file, const std::string file_extension)
{
- return GetFileUmbrellaClassname(file) + file_extension;
+ return GetUmbrellaClassUnqualifiedName(file) + file_extension;
}
void GenerateFile(const google::protobuf::FileDescriptor* file,