summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_predefined_type.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-12 01:47:27 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-12 01:47:27 +0000
commit55c4491d285882098be33ac258efc1ed0cf96245 (patch)
tree73430ba2ce36bcf29682f3ef43cd5e96feec00b4 /TAO/TAO_IDL/ast/ast_predefined_type.cpp
parent34981f24387465709a15d8f49cd70b1de6006c22 (diff)
downloadATCD-55c4491d285882098be33ac258efc1ed0cf96245.tar.gz
Uninlined the destructors, so memory management can be added later.
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_predefined_type.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_predefined_type.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/ast/ast_predefined_type.cpp b/TAO/TAO_IDL/ast/ast_predefined_type.cpp
index 52ad257ec10..4de85b318fd 100644
--- a/TAO/TAO_IDL/ast/ast_predefined_type.cpp
+++ b/TAO/TAO_IDL/ast/ast_predefined_type.cpp
@@ -83,15 +83,20 @@ ACE_RCSID(ast, ast_predefined_type, "$Id$")
/*
* Constructor(s)
*/
-AST_PredefinedType::AST_PredefinedType()
- : pd_pt(PT_long)
+AST_PredefinedType::AST_PredefinedType ()
+ : pd_pt(PT_long)
{
}
-AST_PredefinedType::AST_PredefinedType(PredefinedType t, UTL_ScopedName *n,
- UTL_StrList *p)
- : AST_Decl(AST_Decl::NT_pre_defined, n, p),
- pd_pt(t)
+AST_PredefinedType::AST_PredefinedType (PredefinedType t,
+ UTL_ScopedName *n,
+ UTL_StrList *p)
+ : AST_Decl(AST_Decl::NT_pre_defined, n, p),
+ pd_pt(t)
+{
+}
+
+AST_PredefinedType::~AST_PredefinedType (void)
{
}