Worked around an unused variable compiler warning displayed in concept_check.hpp when _ITERATOR_ is not defined.

[SVN r45671]
This commit is contained in:
Jurko Gospodnetić
2008-05-23 08:59:49 +00:00
parent e7fbe05ee2
commit cc5dcdfb33

View File

@ -144,6 +144,8 @@ namespace boost
void const_constraints(const TT& b) {
#if !defined(_ITERATOR_) // back_insert_iterator broken for VC++ STL
a = b; // const required for argument to assignment
#else
ignore_unused_variable_warning(b);
#endif
}
private: