Repository: thrift
Updated Branches:
  refs/heads/master 117a5cca7 -> fcf447679


THRIFT-4152: Make a patch to fix #4152 at least for structs
Documentation

This closes #1230


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/fcf44767
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/fcf44767
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/fcf44767

Branch: refs/heads/master
Commit: fcf44767929dca4c3b722e1fc3303e7ce51a28e4
Parents: 117a5cc
Author: Gonzalo Aguilar Delgado <gagui...@level2crm.com>
Authored: Fri Mar 31 11:13:04 2017 +0200
Committer: James E. King, III <jk...@apache.org>
Committed: Sat Apr 1 10:56:21 2017 -0400

----------------------------------------------------------------------
 compiler/cpp/src/thrift/generate/t_html_generator.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/fcf44767/compiler/cpp/src/thrift/generate/t_html_generator.cc
----------------------------------------------------------------------
diff --git a/compiler/cpp/src/thrift/generate/t_html_generator.cc 
b/compiler/cpp/src/thrift/generate/t_html_generator.cc
index 5d7ff16..dfd5df3 100644
--- a/compiler/cpp/src/thrift/generate/t_html_generator.cc
+++ b/compiler/cpp/src/thrift/generate/t_html_generator.cc
@@ -698,7 +698,7 @@ int t_html_generator::print_type(t_type* ttype) {
     string type_name = ttype->get_name();
     f_out_ << "<a href=\"" << make_file_link(prog_name + ".html") << "#";
     if (ttype->is_typedef()) {
-      f_out_ << "Typedef_";
+      f_out_ << "Struct_";
     } else if (ttype->is_struct() || ttype->is_xception()) {
       f_out_ << "Struct_";
     } else if (ttype->is_enum()) {

Reply via email to