summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_module.h
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-05-17 21:56:29 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-05-17 21:56:29 +0000
commit6c7b87754f727730cb15af2487a1482398b6d2f5 (patch)
tree213c74812f5aa50b23aaf83908684f6f10837e19 /TAO/TAO_IDL/include/ast_module.h
parent018ffff7f8a63372205a9bed57123b2b0f09d9ad (diff)
downloadATCD-6c7b87754f727730cb15af2487a1482398b6d2f5.tar.gz
ChangeLogTag: Mon May 17 21:55:40 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/TAO_IDL/include/ast_module.h')
-rw-r--r--TAO/TAO_IDL/include/ast_module.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/include/ast_module.h b/TAO/TAO_IDL/include/ast_module.h
index 3ca547005b4..94cfe541447 100644
--- a/TAO/TAO_IDL/include/ast_module.h
+++ b/TAO/TAO_IDL/include/ast_module.h
@@ -115,13 +115,13 @@ public:
// own 'previous' set.
void add_to_previous (AST_Module *m);
- // Called by lookup_by_name_local, to check for declaration
+ // Called to check for some declaration
// in a previous opening of this module.
- virtual AST_Decl *look_in_previous (Identifier *e,
- bool ignore_fwd = false);
+ AST_Decl *look_in_prev_mods (Identifier *e,
+ bool ignore_fwd = false);
// Accessor to the member.
- ACE_Unbounded_Set<AST_Decl *> &previous (void);
+ ACE_Unbounded_Set<AST_Module *> &prev_mods (void);
// Cleanup function.
virtual void destroy (void);
@@ -221,8 +221,8 @@ private:
private:
bool pd_has_nested_valuetype;
- ACE_Unbounded_Set<AST_Decl *> previous_;
- ///; Container for declaration from previous openings of this module.
+ ACE_Unbounded_Set<AST_Module *> prev_mods_;
+ /// Container for previous openings of this module.
AST_Template_Module_Inst *from_inst_;
/// Reference to the instantiation that created us, if any.