THRIFT-1724 HTML generator doesn't identify unions in output
authorRoger Meier <roger@apache.org>
Sat, 20 Oct 2012 21:29:02 +0000 (21:29 +0000)
committerRoger Meier <roger@apache.org>
Sat, 20 Oct 2012 21:29:02 +0000 (21:29 +0000)
Patch: Kevin Radloff

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1400519 13f79535-47bb-0310-9956-ffa450edef68

compiler/cpp/src/generate/t_html_generator.cc

index 6372ab4..3633e62 100644 (file)
@@ -579,6 +579,8 @@ void t_html_generator::generate_struct(t_struct* tstruct) {
   f_out_ << "<h3 id=\"Struct_" << name << "\">";
   if (tstruct->is_xception()) {
     f_out_ << "Exception: ";
+  } else if (tstruct->is_union()) {
+    f_out_ << "Union: ";
   } else {
     f_out_ << "Struct: ";
   }