Skip to content
Snippets Groups Projects
Commit f76d7943 authored by Jonathan Wakely's avatar Jonathan Wakely
Browse files

libstdc++: Fix some -Wunused warnings in tests

libstdc++-v3/ChangeLog:

	* include/ext/pb_ds/detail/type_utils.hpp (PB_DS_STATIC_ASSERT):
	Add unused attribute to avoid -Wunused-local-typedef warnings.
	* testsuite/17_intro/tag_type_explicit_ctor.cc: Add pragma to
	ignore -Wunused-variable warnings
parent 646e979c
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,8 @@ namespace __gnu_pbds
};
#define PB_DS_STATIC_ASSERT(UNIQUE, E) \
typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> \
UNIQUE##__static_assert_type __attribute__((__unused__))
#endif
......
......@@ -34,6 +34,8 @@ void f5(std::try_to_lock_t);
void f6(std::adopt_lock_t);
#endif
#pragma GCC diagnostic ignored "-Wunused-variable"
int main()
{
std::nothrow_t v1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment