THRIFT-1288. cpp: Allow typedefed exceptions in throws clauses
authorBryan Duxbury <bryanduxbury@apache.org>
Wed, 24 Aug 2011 20:53:03 +0000 (20:53 +0000)
committerBryan Duxbury <bryanduxbury@apache.org>
Wed, 24 Aug 2011 20:53:03 +0000 (20:53 +0000)
Patch: David Reiss

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1161271 13f79535-47bb-0310-9956-ffa450edef68

compiler/cpp/src/generate/t_generator.h
compiler/cpp/src/main.cc

index 24ac840..25b532b 100644 (file)
@@ -242,6 +242,7 @@ class t_generator {
     return out.str();
   }
 
+ public:
   /**
    * Get the true type behind a series of typedefs.
    */
index 892ae20..175dbbe 100644 (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;
     }
   }