From cdd885bc28c78cefa25a605dc62c9c2f956297d8 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sun, 2 Dec 2001 19:58:06 +0000 Subject: [PATCH] avoid "unused variable" warnings [SVN r11861] --- test/boost_has_sgi_type_traits.ipp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/boost_has_sgi_type_traits.ipp b/test/boost_has_sgi_type_traits.ipp index 6c5fcef9..0d945bc3 100644 --- a/test/boost_has_sgi_type_traits.ipp +++ b/test/boost_has_sgi_type_traits.ipp @@ -24,6 +24,9 @@ int test() typedef ::__type_traits::has_trivial_default_constructor tdc; typedef ::__type_traits::is_POD_type isp; + (void) &t; // avoid "unused variable" warnings + (void) &f; + return 0; }