THRIFT-1288. cpp: Allow typedefed exceptions in throws clauses

Patch: David Reiss

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1161271 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bryan Duxbury 2011-08-24 20:53:03 +00:00
parent b68f16634a
commit cff83579d7
2 changed files with 2 additions and 1 deletions

View File

@ -242,6 +242,7 @@ class t_generator {
return out.str();
}
public:
/**
* Get the true type behind a series of typedefs.
*/

View File

@ -819,7 +819,7 @@ bool validate_throws(t_struct* throws) {
const vector<t_field*>& members = throws->get_members();
vector<t_field*>::const_iterator m_iter;
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter) {
if (!(*m_iter)->get_type()->is_xception()) {
if (!t_generator::get_true_type((*m_iter)->get_type())->is_xception()) {
return false;
}
}