]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/ratio/include/boost/ratio/mpl/not_equal_to.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / ratio / include / boost / ratio / mpl / not_equal_to.hpp
CommitLineData
7c673cae
FG
1// not_equal_to.hpp
2//
3// (C) Copyright 2011 Vicente J. Botet Escriba
4// Use, modification and distribution are subject to the Boost Software License,
5// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt).
7//
8
9#ifndef BOOST_RATIO_MPL_NOT_EQUAL_TO_HPP
10#define BOOST_RATIO_MPL_NOT_EQUAL_TO_HPP
11
12#include <boost/ratio/ratio.hpp>
13#include <boost/ratio/mpl/numeric_cast.hpp>
14#include <boost/mpl/not_equal_to.hpp>
15
16namespace boost {
17namespace mpl {
18
19template<>
20struct not_equal_to_impl< rational_c_tag,rational_c_tag >
21{
22 template< typename R1, typename R2 > struct apply
23 : ratio_not_equal<R1, R2>
24 {
25 };
26};
27}
28}
29
30#endif // BOOST_RATIO_MPL_NOT_EQUAL_TO_HPP