Opened 16 years ago
Last modified 15 years ago
#813 closed Bugs (fixed)
concept_check.hpp unused variable warning — at Initial Version
| Reported by: | slyilmaz | Owned by: | jsiek |
|---|---|---|---|
| Milestone: | Component: | concept_check | |
| Version: | None | Severity: | Problem |
| Keywords: | Cc: |
Description
In file boost/concept_check.hpp (line 154 in CVS version 1.42), in member void BOOST_concept(Assignable,(TT))::const_constraints(const TT& b) argument b is unused in some compilers.
Can you please change it as
#if !defined(_ITERATOR_)
a = b;
#else
ignore_unused_variable_warning(b);
#endif
Note:
See TracTickets
for help on using tickets.
