Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

libs/gil/test/core/image_processing/kernel_1d_fixed_even_size_fail.cpp

//
// Copyright 2019 Mateusz Loskot <mateusz at loskot dot net>
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/gil/image_processing/kernel.hpp>

namespace gil = boost::gil;

int main()
{
    gil::kernel_1d_fixed<int, 0> k0;
    gil::kernel_1d_fixed<int, 4> k4;
}