diff options
Diffstat (limited to 'connectivity/source/inc/file/fcomp.hxx')
-rw-r--r-- | connectivity/source/inc/file/fcomp.hxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/connectivity/source/inc/file/fcomp.hxx b/connectivity/source/inc/file/fcomp.hxx index de7c29053351..a8cef56293f1 100644 --- a/connectivity/source/inc/file/fcomp.hxx +++ b/connectivity/source/inc/file/fcomp.hxx @@ -2,9 +2,9 @@ * * $RCSfile: fcomp.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: oj $ $Date: 2001-08-24 06:00:38 $ + * last change: $Author: oj $ $Date: 2002-07-05 08:07:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -92,6 +92,15 @@ namespace connectivity OPredicateCompiler(OSQLAnalyzer* pAnalyzer); virtual ~OPredicateCompiler(); + + inline static void * SAL_CALL operator new( size_t nSize ) SAL_THROW( () ) + { return ::rtl_allocateMemory( nSize ); } + inline static void * SAL_CALL operator new( size_t nSize,void* _pHint ) SAL_THROW( () ) + { return _pHint; } + inline static void SAL_CALL operator delete( void * pMem ) SAL_THROW( () ) + { ::rtl_freeMemory( pMem ); } + inline static void SAL_CALL operator delete( void * pMem,void* _pHint ) SAL_THROW( () ) + { } void dispose(); void start(connectivity::OSQLParseNode* pSQLParseNode); |