]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/qvm/test/div_eq_qs_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / qvm / test / div_eq_qs_test.cpp
CommitLineData
92f5a8d4
TL
1//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
2
3//Distributed under the Boost Software License, Version 1.0. (See accompanying
4//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#include <boost/qvm/quat_operations.hpp>
7#include "test_qvm_quaternion.hpp"
8#include "gold.hpp"
9
10namespace
11 {
12 void
13 test()
14 {
15 using namespace boost::qvm::sfinae;
16 test_qvm::quaternion<Q1> x(42,1);
17 test_qvm::scalar_multiply_v(x.b,x.a,0.5f);
18 x/=2;
19 BOOST_QVM_TEST_EQ(x.a,x.b);
20 }
21 }
22
23int
24main()
25 {
26 test();
27 return boost::report_errors();
28 }