11 Apr
2014
11 Apr
'14
1:22 p.m.
Antony Polukhin
You can try to use MPL's string: http://www.boost.org/doc/libs/1_55_0/libs/mpl/doc/refmanual/string.html
typedef mpl::string<'hell','o wo','rld'> hello; typedef mpl::string<'hi t','here'> hi; BOOST_STATIC_ASSERT(!boost::is_same
::value);
Thank you, Antony. Just thought about mpl::string, but forgot about type traits. :)