From f4f3c931b0d534ff9a08f169749bf18b709d76d8 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 2 Jul 2001 21:44:51 +0000 Subject: [PATCH] Extended the ~tsSLList() workaround, egcs-2.91.66 doesn't like this either. --- src/libCom/cxxTemplates/resourceLib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/cxxTemplates/resourceLib.h b/src/libCom/cxxTemplates/resourceLib.h index 10a9f4dad..7a10d4b06 100644 --- a/src/libCom/cxxTemplates/resourceLib.h +++ b/src/libCom/cxxTemplates/resourceLib.h @@ -470,7 +470,7 @@ void resTable::splitBucket () // Currently the Tornado compiler cant deal with ~tsSLList() but since // its a NOOP we can find a workaround ... // -# if ! defined (__GNUC__) || __GNUC__ > 2 || ( __GNUC__ == 2 && __GNUC_MINOR__ >= 72 ) +# if ! defined (__GNUC__) || __GNUC__ > 2 || ( __GNUC__ == 2 && __GNUC_MINOR__ >= 92 ) for ( i = 0; i < oldTableSize; i++ ) { this->pTable[i].~tsSLList(); }