From 1a98988134d1bc2221baa7b01018c250eb699397 Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Thu, 9 Nov 2006 13:26:08 +0000 Subject: [PATCH] fix compiler error on the SUN, hope no compiler defines a upper case letter, thanks to Rob Yull git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@777 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/SmallObj.h | 42 ++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/include/loki/SmallObj.h b/include/loki/SmallObj.h index 0c52860..5986d3f 100644 --- a/include/loki/SmallObj.h +++ b/include/loki/SmallObj.h @@ -277,14 +277,14 @@ namespace Loki template < - template class TM, - std::size_t CS, - std::size_t MSOS, - std::size_t OAS, - template class LP, - class MX + template class T, + std::size_t C, + std::size_t M, + std::size_t O, + template class L, + class X > - void AllocatorSingleton< TM, CS, MSOS, OAS, LP, MX >::ClearExtraMemory( void ) + void AllocatorSingleton< T, C, M, O, L, X >::ClearExtraMemory( void ) { typename MyThreadingModel::Lock lock; (void)lock; // get rid of warning @@ -293,14 +293,14 @@ namespace Loki template < - template class TM, - std::size_t CS, - std::size_t MSOS, - std::size_t OAS, - template class LP, - class MX + template class T, + std::size_t C, + std::size_t M, + std::size_t O, + template class L, + class X > - bool AllocatorSingleton< TM, CS, MSOS, OAS, LP, MX >::IsCorrupted( void ) + bool AllocatorSingleton< T, C, M, O, L, X >::IsCorrupted( void ) { typename MyThreadingModel::Lock lock; (void)lock; // get rid of warning @@ -321,15 +321,15 @@ namespace Loki */ template < - template class TM, - std::size_t CS, - std::size_t MSOS, - std::size_t OAS, - template class LP, - class MX + template class T, + std::size_t C, + std::size_t M, + std::size_t O, + template class L, + class X > inline unsigned int GetLongevity( - AllocatorSingleton< TM, CS, MSOS, OAS, LP, MX > * ) + AllocatorSingleton< T, C, M, O, L, X > * ) { // Returns highest possible value. return 0xFFFFFFFF;