1
0
forked from boostorg/mp11

Add cmake_subdir_test

This commit is contained in:
Peter Dimov
2018-09-30 21:29:36 +03:00
parent 8c278c84dd
commit 1a7fc19caa
3 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#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;
}