From 71382c167b5ccd740aed2dad8a06d9ab9fc7f4f2 Mon Sep 17 00:00:00 2001 From: parsons Date: Wed, 21 Jul 1999 22:01:30 +0000 Subject: Added initialization of be_decl::has_constructor_ in the constructor. Must have neglected to check this file in with my original fix, and it broke IDL_Cubit (again ;-). --- TAO/TAO_IDL/be/be_decl.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/TAO/TAO_IDL/be/be_decl.cpp b/TAO/TAO_IDL/be/be_decl.cpp index 36a11b94358..92d7efb4790 100644 --- a/TAO/TAO_IDL/be/be_decl.cpp +++ b/TAO/TAO_IDL/be/be_decl.cpp @@ -47,7 +47,8 @@ be_decl::be_decl (void) repoID_ (0), ami_handler_repoID_ (0), prefix_ (0), - size_type_ (be_decl::SIZE_UNKNOWN) + size_type_ (be_decl::SIZE_UNKNOWN), + has_constructor_ (I_FALSE) { } @@ -75,7 +76,8 @@ be_decl::be_decl (AST_Decl::NodeType type, repoID_ (0), ami_handler_repoID_ (0), prefix_ (0), - size_type_ (be_decl::SIZE_UNKNOWN) + size_type_ (be_decl::SIZE_UNKNOWN), + has_constructor_ (I_FALSE) { } -- cgit v1.2.1