Skip to content

Commit 8c26a50

Browse files
committed
Fix incorrect include guards (copypasta). Thanks to Anton Vasin (tony-space) for the bug report and fix
1 parent 1e098f3 commit 8c26a50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/boost/algorithm/cxx17/inclusive_scan.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
/// \brief Combine the (transformed) elements of a sequence (or two) into a single value.
1010
/// \author Marshall Clow
1111

12-
#ifndef BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
13-
#define BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
12+
#ifndef BOOST_ALGORITHM_INCLUSIVE_SCAN_HPP
13+
#define BOOST_ALGORITHM_INCLUSIVE_SCAN_HPP
1414

1515
#include <functional> // for std::plus
1616
#include <iterator> // for std::iterator_traits
@@ -58,4 +58,4 @@ OutputIterator inclusive_scan(InputIterator first, InputIterator last,
5858

5959
}} // namespace boost and algorithm
6060

61-
#endif // BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
61+
#endif // BOOST_ALGORITHM_INCLUSIVE_SCAN_HPP

0 commit comments

Comments
 (0)