2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 08:32:12 +00:00
Files
hof/test/rotate.cpp
2016-03-02 01:46:17 -06:00

10 lines
300 B
C++

#include <boost/fit/rotate.hpp>
#include <boost/fit/placeholders.hpp>
#include "test.hpp"
BOOST_FIT_TEST_CASE()
{
BOOST_FIT_TEST_CHECK(3 == boost::fit::rotate(boost::fit::_ - boost::fit::_)(2, 5));
BOOST_FIT_STATIC_TEST_CHECK(3 == boost::fit::rotate(boost::fit::_ - boost::fit::_)(2, 5));
}