• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
main()12 int main()
13 {
14     gil::kernel_1d_fixed<int, 0> k0;
15     gil::kernel_1d_fixed<int, 4> k4;
16 }
17