Commit b4a0c79b by Jason Merrill Committed by Jason Merrill

Correct use of __GXX_WEAK__ macro.

	* testsuite/ext/bitmap_allocator/check_deallocate_null.cc
	* testsuite/ext/bitmap_allocator/check_allocate_max_size.cc

From-SVN: r231953
parent ee9661d4
2015-12-24 Jason Merrill <jason@redhat.com>
* testsuite/ext/bitmap_allocator/check_deallocate_null.cc
* testsuite/ext/bitmap_allocator/check_allocate_max_size.cc:
Correct use of __GXX_WEAK__ macro.
2015-12-22 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/59768
......
......@@ -30,7 +30,7 @@ int main()
return 0;
}
#if !__GXX_WEAK
#if !__GXX_WEAK__
// Explicitly instantiatiate for systems without weak symbols.
template class __gnu_cxx::bitmap_allocator<value_type>;
#endif
......@@ -30,7 +30,7 @@ int main()
return 0;
}
#if !__GXX_WEAK
#if !__GXX_WEAK__
// Explicitly instantiatiate for systems without weak symbols.
template class __gnu_cxx::bitmap_allocator<value_type>;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment