summaryrefslogtreecommitdiff
path: root/ACE/examples
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-02-06 10:33:12 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-02-06 10:33:12 +0000
commit2cb70c0d69c55296a2a70ebb151ec5704334066e (patch)
tree444abb26b9d6ea67956b9841785da566a20ef0a4 /ACE/examples
parente744b6fdfe9f373b07a5b36414d037a41d2b19f5 (diff)
downloadATCD-2cb70c0d69c55296a2a70ebb151ec5704334066e.tar.gz
Fri Feb 6 10:33:17 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/APG/Containers/Map_Manager_Specialization.cpp: Fixed compile error in versioned namespace build
Diffstat (limited to 'ACE/examples')
-rw-r--r--ACE/examples/APG/Containers/Map_Manager_Specialization.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/examples/APG/Containers/Map_Manager_Specialization.cpp b/ACE/examples/APG/Containers/Map_Manager_Specialization.cpp
index fc9c00d86f0..2943967d3af 100644
--- a/ACE/examples/APG/Containers/Map_Manager_Specialization.cpp
+++ b/ACE/examples/APG/Containers/Map_Manager_Specialization.cpp
@@ -36,6 +36,7 @@ ACE_Map_Manager<KeyType, DataElement, ACE_Null_Mutex>::equal
}
// Listing 1
#else
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template<>
int
ACE_Map_Manager<KeyType, DataElement, ACE_Null_Mutex>::equal
@@ -43,6 +44,7 @@ ACE_Map_Manager<KeyType, DataElement, ACE_Null_Mutex>::equal
{
return (r1 == r2);
}
+ACE_END_VERSIONED_NAMESPACE_DECL
#endif /* 0 */
class Map_Example