summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-04-20 18:51:37 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-04-20 18:51:37 +0000
commitae259b885f84d16e786969c4535fab7eaf701fae (patch)
treed8952095faf205843dee77850c6e544f164c57c0
parent00e98c58364d9dd47976acbb142c09bfc13896e9 (diff)
downloadATCD-ae259b885f84d16e786969c4535fab7eaf701fae.tar.gz
Mon Apr 20 19:51:06 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Malloc_Test.cpp: Fixed argument not used warning with cegcc
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/tests/Malloc_Test.cpp2
2 files changed, 7 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index a43c0b98a57..a38b9257350 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Mon Apr 20 19:51:06 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Malloc_Test.cpp:
+ Fixed argument not used warning with cegcc
+
Mon Apr 20 18:16:06 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_gnuwin32_common.GNU:
diff --git a/ACE/tests/Malloc_Test.cpp b/ACE/tests/Malloc_Test.cpp
index 1e26005590c..c20194e0e55 100644
--- a/ACE/tests/Malloc_Test.cpp
+++ b/ACE/tests/Malloc_Test.cpp
@@ -100,6 +100,7 @@ myallocator (const void *base_addr = 0)
#if defined (ACE_HAS_WINCE) || defined (ACE_OPENVMS)
// WinCE cannot do fixed base, ever.
+ ACE_UNUSED_ARG (base_addr);
ACE_MMAP_Memory_Pool_Options options
(0,
ACE_MMAP_Memory_Pool_Options::NEVER_FIXED);
@@ -126,6 +127,7 @@ init_test (const void *base_addr = 0)
// file from the previous crash.
#if defined (ACE_HAS_WINCE) || defined (ACE_OPENVMS)
// WinCE cannot do fixed base, ever.
+ ACE_UNUSED_ARG (base_addr);
ACE_MMAP_Memory_Pool_Options options
(0,
ACE_MMAP_Memory_Pool_Options::NEVER_FIXED);