summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-03-06 20:39:05 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-03-06 20:39:05 +0000
commitd43f55540c2086942205b96d7448395ce1371be7 (patch)
tree3d7d59dd81a09369d29d6788c04098fb9e6a0496
parent94b3aa198071d216bf34e83b63b29aff35e7aefc (diff)
WaE: silence this annoying warningLO-BASE-INTEGRATION-DEV300_M101
-rw-r--r--sal/inc/rtl/allocator.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sal/inc/rtl/allocator.hxx b/sal/inc/rtl/allocator.hxx
index a9040f44a..ffad205ef 100644
--- a/sal/inc/rtl/allocator.hxx
+++ b/sal/inc/rtl/allocator.hxx
@@ -148,6 +148,7 @@ public:
void destroy (pointer p)
{
p->~T();
+ (void)p; //MSVC2005 annoyingly warns this is unused
}
};