1
0
forked from boostorg/mp11

Add <boost/mp11/version.hpp>

This commit is contained in:
Peter Dimov
2019-03-04 20:29:49 +02:00
parent f7ca2842c3
commit b6b1805c8c
17 changed files with 254 additions and 0 deletions

17
test/bind_version.cpp Normal file
View File

@@ -0,0 +1,17 @@
// Copyright 2019 Peter Dimov
//
// Distributed under the Boost Software License, Version 1.0.
//
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/mp11/bind.hpp>
#include <boost/version.hpp>
#include <boost/core/lightweight_test.hpp>
int main()
{
BOOST_TEST_EQ( BOOST_MP11_VERSION, BOOST_VERSION );
return boost::report_errors();
}