Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
cc6ea42
)
THRIFT-1724 HTML generator doesn't identify unions in output
author
Roger Meier
<roger@apache.org>
Sat, 20 Oct 2012 21:29:02 +0000
(21:29 +0000)
committer
Roger 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
patch
|
blob
|
history
diff --git
a/compiler/cpp/src/generate/t_html_generator.cc
b/compiler/cpp/src/generate/t_html_generator.cc
index
6372ab4
..
3633e62
100644
(file)
--- 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_ << "<h3 id=\"Struct_" << name << "\">";
if (tstruct->is_xception()) {
f_out_ << "Exception: ";
+ } else if (tstruct->is_union()) {
+ f_out_ << "Union: ";
} else {
f_out_ << "Struct: ";
}