summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp')
-rw-r--r--TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp b/TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp
index 9ef9c5c97d3..b2093734f92 100644
--- a/TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp
+++ b/TAO/CIAO/CCF/CCF/IDL3/SemanticAction/Impl/Uses.hpp
@@ -27,7 +27,7 @@ namespace CCF
Uses (bool trace, SyntaxTree::ScopePtr& current)
: trace_ (trace),
scope_ (current),
- type_ ("")
+ type_ ("::") //@@ this is dirty
{
}
@@ -43,7 +43,7 @@ namespace CCF
struct Predicate : public DeclarationTable::ResolvePredicate
{
virtual bool
- test (DeclarationPtr const& d) throw ()
+ test (DeclarationPtr const& d) const throw ()
{
return d->is_a<InterfaceDecl> ();
}
@@ -91,7 +91,7 @@ namespace CCF
scope_->insert (d);
- type_ = ScopedName ("");
+ type_ = ScopedName ("::");
}
private: