-RM-114-MR-[STYLECHECKER] stylechecker NOLINT command does not work for mpl::vector
The stylechecker thinks we use a std::vector in this line:
BOOST_MPL_ASSERT( ( boost::is_same< TestStruct::TypeVector,
boost::mpl::vector< WPropInt, WPropBool > > // NOLINT
) );
But we don't. Its a compile time vector from boost::mpl. A NOLINT comment does not silent the stylechecker.
Either make stylechecker smarter to know about mpl::vector != std::vector or make it accept the NOLINT
If this is fixed, remove the unneeded include in source:src/core/common/test/WPropertyStruct_test.h
(from redmine: created on 2011-12-02, closed on 2011-12-13)