Skip to content

Commit

Permalink
added missing header guards (#568)
Browse files Browse the repository at this point in the history
added missing header guards in
<boost/gil/image_processing/diffusion.hpp>
  • Loading branch information
lpranam authored Feb 28, 2021
1 parent a82af6d commit 33ab3cf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/boost/gil/image_processing/diffusion.hpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
//
// Copyright 2020 Olzhas Zhumabek <anonymous.from.applecity@gmail.com>
// Copyright 2021 Pranam Lashkari <plashkari628@gmail.com>
//
// Use, modification and distribution are subject to 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)
//

#ifndef BOOST_GIL_IMAGE_PROCESSING_DIFFUSION_HPP
#define BOOST_GIL_IMAGE_PROCESSING_DIFFUSION_HPP

#include "boost/gil/detail/math.hpp"
#include <boost/gil/algorithm.hpp>
#include <boost/gil/color_base_algorithm.hpp>
Expand Down Expand Up @@ -419,3 +424,5 @@ void anisotropic_diffusion(const InputView& input, const OutputView& output, uns
}

}} // namespace boost::gil

#endif

0 comments on commit 33ab3cf

Please sign in to comment.