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, 5 insertions, 0 deletions
diff --git a/examples/APG/Containers/RB_Tree_Functors.h b/examples/APG/Containers/RB_Tree_Functors.h
index 75fb33a69d8..010fb5fda62 100644
--- a/examples/APG/Containers/RB_Tree_Functors.h
+++ b/examples/APG/Containers/RB_Tree_Functors.h
@@ -20,6 +20,8 @@ private:
int val_;
};
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
template<>
class ACE_Less_Than<KeyType>
{
@@ -27,6 +29,9 @@ public:
int operator() (const KeyType k1, const KeyType k2)
{ return k1 < k2; }
};
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
// Listing 1
#endif /* __RB_TREE_FUNCTORS_H_ */