diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-07-05 07:07:52 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-07-05 07:07:52 +0000 |
commit | 6a02139fb7afc6cd23aaff2a68b4ea1acb9bae00 (patch) | |
tree | 811672395d1398c180b8406f26fec5dc6311006c /connectivity/source/inc/file/fcomp.hxx | |
parent | f6842997d5e9756cb651a079a5437a8957aae0c4 (diff) |
#99549# insert and remove some delete and new operators
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); |