summaryrefslogtreecommitdiff
path: root/examples/APG/Containers/RB_Tree_Functors.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Containers/RB_Tree_Functors.h')
-rw-r--r--examples/APG/Containers/RB_Tree_Functors.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/APG/Containers/RB_Tree_Functors.h b/examples/APG/Containers/RB_Tree_Functors.h
index 010fb5fda62..75fb33a69d8 100644
--- a/examples/APG/Containers/RB_Tree_Functors.h
+++ b/examples/APG/Containers/RB_Tree_Functors.h
@@ -20,8 +20,6 @@ private:
int val_;
};
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
template<>
class ACE_Less_Than<KeyType>
{
@@ -29,9 +27,6 @@ public:
int operator() (const KeyType k1, const KeyType k2)
{ return k1 < k2; }
};
-
-ACE_END_VERSIONED_NAMESPACE_DECL
-
// Listing 1
#endif /* __RB_TREE_FUNCTORS_H_ */