summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_consumes.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-01-27 14:24:52 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-01-27 14:24:52 +0000
commit51f6cfa4b128612c317f6282fdb93a6f646773f1 (patch)
treefde9846e5dcd4aaba444ee73cbdb60b46e2aa7ac /TAO/TAO_IDL/ast/ast_consumes.cpp
parent82701198d1ec488dc36ee74bea02323581d1f0c2 (diff)
downloadATCD-51f6cfa4b128612c317f6282fdb93a6f646773f1.tar.gz
Wed Jan 27 14:19:30 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
Merged revision 88605-88741 from idl3_plus_backend2 to svn head. This gives us templated modules for the small parts we need for dds4ccm
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_consumes.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_consumes.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/ast/ast_consumes.cpp b/TAO/TAO_IDL/ast/ast_consumes.cpp
index 347a323cd81..2e38ad8141d 100644
--- a/TAO/TAO_IDL/ast/ast_consumes.cpp
+++ b/TAO/TAO_IDL/ast/ast_consumes.cpp
@@ -1,7 +1,6 @@
// $Id$
#include "ast_consumes.h"
-#include "ast_eventtype.h"
#include "ast_visitor.h"
AST_Consumes::AST_Consumes (UTL_ScopedName *n,
@@ -20,10 +19,10 @@ AST_Consumes::~AST_Consumes (void)
{
}
-AST_EventType *
+AST_Type *
AST_Consumes::consumes_type (void) const
{
- return AST_EventType::narrow_from_decl (this->field_type ());
+ return this->field_type ();
}
void