]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/gil/test/extension/numeric/kernel_1d_fixed_even_size_fail.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / gil / test / extension / numeric / kernel_1d_fixed_even_size_fail.cpp
1 //
2 // Copyright 2019 Mateusz Loskot <mateusz at loskot dot net>
3 //
4 // Distributed under the Boost Software License, Version 1.0
5 // See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt
7 //
8 #include <boost/gil/extension/numeric/kernel.hpp>
9
10 namespace gil = boost::gil;
11
12 int main()
13 {
14 gil::kernel_1d_fixed<int, 0> k0;
15 gil::kernel_1d_fixed<int, 4> k4;
16 }