summaryrefslogtreecommitdiff
path: root/sal/qa/rtl/alloc/rtl_alloc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/qa/rtl/alloc/rtl_alloc.cxx')
-rw-r--r--sal/qa/rtl/alloc/rtl_alloc.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/qa/rtl/alloc/rtl_alloc.cxx b/sal/qa/rtl/alloc/rtl_alloc.cxx
index 2bfa2f52355d..9bf2716266be 100644
--- a/sal/qa/rtl/alloc/rtl_alloc.cxx
+++ b/sal/qa/rtl/alloc/rtl_alloc.cxx
@@ -58,12 +58,12 @@ public:
}
// initialise your test code values here.
- void setUp()
+ void setUp() SAL_OVERRIDE
{
m_pMemory = (char*) rtl_allocateMemory( m_nSizeOfMemory );
}
- void tearDown()
+ void tearDown() SAL_OVERRIDE
{
rtl_freeMemory(m_pMemory);
m_pMemory = NULL;
@@ -106,12 +106,12 @@ public:
}
// initialise your test code values here.
- void setUp()
+ void setUp() SAL_OVERRIDE
{
m_pZeroMemory = (char*) rtl_allocateZeroMemory( m_nSizeOfZeroMemory );
}
- void tearDown()
+ void tearDown() SAL_OVERRIDE
{
rtl_freeZeroMemory(m_pZeroMemory, m_nSizeOfZeroMemory);
// LLA: no check possible, may GPF if there is something wrong.