avoid "unused variable" warnings

[SVN r11861]
This commit is contained in:
Jens Maurer
2001-12-02 19:58:06 +00:00
parent 63dc3c2a64
commit cdd885bc28

View File

@ -24,6 +24,9 @@ int test()
typedef ::__type_traits<char>::has_trivial_default_constructor tdc; typedef ::__type_traits<char>::has_trivial_default_constructor tdc;
typedef ::__type_traits<foo_type>::is_POD_type isp; typedef ::__type_traits<foo_type>::is_POD_type isp;
(void) &t; // avoid "unused variable" warnings
(void) &f;
return 0; return 0;
} }