mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
THRIFT-1281. compiler: add @generated to the docblock
Patch: Bill Fumerola git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1160943 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bce6fadf3b
commit
0fa8ff7fd4
@ -70,6 +70,7 @@ class t_oop_generator : public t_generator {
|
||||
" * Autogenerated by Thrift Compiler (" + THRIFT_VERSION + ")\n" +
|
||||
" *\n" +
|
||||
" * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n" +
|
||||
" * @generated\n" +
|
||||
" */\n";
|
||||
}
|
||||
};
|
||||
|
@ -639,7 +639,8 @@ void t_php_generator::generate_php_struct_definition(ofstream& out,
|
||||
string f_struct = program_name_+"."+(tstruct->get_name())+".php";
|
||||
string f_struct_name = package_dir_+f_struct;
|
||||
autoload_out.open(f_struct_name.c_str());
|
||||
autoload_out << "<?php" << endl;
|
||||
autoload_out << "<?php" << endl
|
||||
<< "/**" << endl << " * @generated" << endl << " */" << endl;
|
||||
_generate_php_struct_definition(autoload_out, tstruct, is_exception);
|
||||
autoload_out << endl << "?>" << endl;
|
||||
autoload_out.close();
|
||||
@ -1381,7 +1382,8 @@ void t_php_generator::generate_service_client(t_service* tservice) {
|
||||
string f_struct = program_name_+"."+(tservice->get_name())+".client.php";
|
||||
string f_struct_name = package_dir_+f_struct;
|
||||
autoload_out.open(f_struct_name.c_str());
|
||||
autoload_out << "<?php" << endl;
|
||||
autoload_out << "<?php" << endl
|
||||
<< "/**" << endl << " * @generated" << endl << " */" << endl;
|
||||
_generate_service_client(autoload_out, tservice);
|
||||
autoload_out << endl << "?>" << endl;
|
||||
autoload_out.close();
|
||||
|
Loading…
Reference in New Issue
Block a user