summaryrefslogtreecommitdiff
path: root/ACE/ace/Unbounded_Set.inl
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2008-05-07 19:30:35 +0000
committerSteve Huston <shuston@riverace.com>2008-05-07 19:30:35 +0000
commit20be86002bd098ffcec2237daa724e672fd1061e (patch)
tree2fe9ee8b65b851c763f827327fd1a1d198acc967 /ACE/ace/Unbounded_Set.inl
parent739e14e01dd07c6d66db5483e5d1b2ade9c0ef0c (diff)
downloadATCD-20be86002bd098ffcec2237daa724e672fd1061e.tar.gz
ChangeLogTag:Wed May 7 19:28:35 UTC 2008 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ACE/ace/Unbounded_Set.inl')
-rw-r--r--ACE/ace/Unbounded_Set.inl12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Unbounded_Set.inl b/ACE/ace/Unbounded_Set.inl
index d5a870f49f4..0f2847e9cc3 100644
--- a/ACE/ace/Unbounded_Set.inl
+++ b/ACE/ace/Unbounded_Set.inl
@@ -15,13 +15,13 @@ ACE_Unbounded_Set_Default_Comparator<T>::operator () (const T &lhs, const T &rh
template<typename T>
ACE_Unbounded_Set_Iterator<T>::ACE_Unbounded_Set_Iterator (ACE_Unbounded_Set<T> &s,
bool end)
- : BASE (s, end)
+ : base_type (s, end)
{
}
template<typename T>
-ACE_Unbounded_Set_Iterator<T>::ACE_Unbounded_Set_Iterator (const BASE & s)
- : BASE (s)
+ACE_Unbounded_Set_Iterator<T>::ACE_Unbounded_Set_Iterator (const base_type & s)
+ : base_type (s)
{
}
@@ -29,13 +29,13 @@ template<typename T>
ACE_Unbounded_Set_Const_Iterator<T>::
ACE_Unbounded_Set_Const_Iterator (const ACE_Unbounded_Set<T> &s,
bool end)
- : BASE (s, end)
+ : base_type (s, end)
{
}
template<typename T>
-ACE_Unbounded_Set_Const_Iterator<T>::ACE_Unbounded_Set_Const_Iterator (const BASE & s)
- : BASE (s)
+ACE_Unbounded_Set_Const_Iterator<T>::ACE_Unbounded_Set_Const_Iterator (const base_type & s)
+ : base_type (s)
{
}