From: Roger Meier Date: Sat, 20 Oct 2012 21:29:02 +0000 (+0000) Subject: THRIFT-1724 HTML generator doesn't identify unions in output X-Git-Tag: 0.9.1~263 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=e854206180658f3e840518d46def3572cc79178e;p=common%2Fthrift.git THRIFT-1724 HTML generator doesn't identify unions in output Patch: Kevin Radloff git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1400519 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/compiler/cpp/src/generate/t_html_generator.cc b/compiler/cpp/src/generate/t_html_generator.cc index 6372ab4a..3633e623 100644 --- a/compiler/cpp/src/generate/t_html_generator.cc +++ b/compiler/cpp/src/generate/t_html_generator.cc @@ -579,6 +579,8 @@ void t_html_generator::generate_struct(t_struct* tstruct) { f_out_ << "

"; if (tstruct->is_xception()) { f_out_ << "Exception: "; + } else if (tstruct->is_union()) { + f_out_ << "Union: "; } else { f_out_ << "Struct: "; }