forked from boostorg/gil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added missing header guards (boostorg#568)
added missing header guards in <boost/gil/image_processing/diffusion.hpp>
- Loading branch information
Showing
1 changed file
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
// | ||
// Copyright 2020 Olzhas Zhumabek <[email protected]> | ||
// Copyright 2021 Pranam Lashkari <[email protected]> | ||
// | ||
// 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> | ||
|
@@ -419,3 +424,5 @@ void anisotropic_diffusion(const InputView& input, const OutputView& output, uns | |
} | ||
|
||
}} // namespace boost::gil | ||
|
||
#endif |