From aa4a5a276b3e694b7d73c57b23f3a331d2d14bfe Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 6 Mar 2011 20:39:05 +0000 Subject: WaE: silence this annoying warning --- sal/inc/rtl/allocator.hxx | 1 + 1 file changed, 1 insertion(+) diff --git a/sal/inc/rtl/allocator.hxx b/sal/inc/rtl/allocator.hxx index 83ebb0faea43..5b27beec8259 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 } }; -- cgit