]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/qvm/test/deduce_scalar_fail.cpp
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / boost / libs / qvm / test / deduce_scalar_fail.cpp
1 // Copyright 2008-2022 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/deduce_scalar.hpp>
7
8 template <class> struct tester { };
9 template <> struct tester<void>;
10
11 int char_scalars_not_supported_use_signed_char_instead = sizeof(tester<boost::qvm::deduce_scalar<char,int>::type>);