mp11/test/cmake_subdir_test/main.cpp
2018-09-30 21:29:36 +03:00

9 lines
172 B
C++

#include <boost/mp11.hpp>
using namespace boost::mp11;
int main()
{
using L1 = mp_list<int, float, int, float>;
return mp_size<mp_unique<L1>>::value == 2? 0: 1;
}