summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-22 12:33:50 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-22 12:33:50 +0000
commitd2e1d1263aad7252e3812c04d4215b5b512fc78c (patch)
tree5b068f25b0181621f4f943ea82c1456dcbf1afe2
parenta7d834d678ae1a55e13bde643bd5eb81f50a31e2 (diff)
downloadATCD-d2e1d1263aad7252e3812c04d4215b5b512fc78c.tar.gz
commented out "template<>" for now. Not all compilers can cope with it.
-rw-r--r--ace/Filecache.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Filecache.cpp b/ace/Filecache.cpp
index b0232ad248f..ae79196f316 100644
--- a/ace/Filecache.cpp
+++ b/ace/Filecache.cpp
@@ -136,7 +136,7 @@ ACE_Filecache_Handle::size (void) const
#define ACE_Filecache_Hash_Entry \
ACE_Hash_Map_Entry<const char *, ACE_Filecache_Object *>
-template<>
+/* template<> */
ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (const char *const &ext_id,
ACE_Filecache_Object *const &int_id,
ACE_Filecache_Hash_Entry *next,
@@ -148,7 +148,7 @@ ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (const char *const &ext_id,
{
}
-template<>
+/* template<> */
ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (ACE_Filecache_Hash_Entry *next,
ACE_Filecache_Hash_Entry *prev)
: ext_id_ (0),
@@ -157,7 +157,7 @@ ACE_Filecache_Hash_Entry::ACE_Hash_Map_Entry (ACE_Filecache_Hash_Entry *next,
{
}
-template<>
+/* template<> */
ACE_Filecache_Hash_Entry::~ACE_Hash_Map_Entry (void)
{
ACE_OS::free ((void *) ext_id_);
@@ -172,7 +172,7 @@ ACE_Filecache_Hash::hash (const char *const &ext_id)
return ACE::hash_pjw (ext_id);
}
-template<> int
+/* template<> */ int
ACE_Filecache_Hash::equal (const char *const &id1, const char *const &id2)
{
return ACE_OS::strcmp (id1, id2) == 0;