Opened 9 years ago
Closed 9 years ago
#8844 closed Patches (fixed)
[PATCH] arg.hpp should use BOOST_STATIC_ASSERT
Reported by: | Owned by: | Peter Dimov | |
---|---|---|---|
Milestone: | To Be Determined | Component: | bind |
Version: | Boost 1.54.0 | Severity: | Problem |
Keywords: | Cc: |
Description
template <int I> template<class T> boost::arg<I>::arg<T> (T &) contains code equivalent to BOOST_STATIC_ASSERT:
// static assert I == is_placeholder<T>::value typedef char T_must_be_placeholder[ I == is_placeholder<T>::value? 1: -1 ];
GCC recently added a warning for this unused typedef case. This can be worked around by adding attribute ((unused)), but why not simply use BOOST_STATIC_ASSERT?
Test suite passes.
Attachments (1)
Change History (3)
by , 9 years ago
Attachment: | boost-1.54.0-bind-static_assert.patch added |
---|
comment:1 by , 9 years ago
I'm also experiencing this warning, the attached 'boost-1.54.0-bind-static_assert.patch' does fix it.
comment:2 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
A fix