Skip to content

Commit a684dbd

Browse files
committed
Fix include guard naming
1 parent 5375a1d commit a684dbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/boost/math/special_functions/prime_sieve.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// (See accompanying file LICENSE_1_0.txt
66
// or copy at http://www.boost.org/LICENSE_1_0.txt)
77

8-
#ifndef BOOST_MATH_SPECIAL_FUNCTIONS_PRIME_FUNCTIONS_HPP
9-
#define BOOST_MATH_SPECIAL_FUNCTIONS_PRIME_FUNCTIONS_HPP
8+
#ifndef BOOST_MATH_SPECIAL_FUNCTIONS_PRIME_SIEVE_HPP
9+
#define BOOST_MATH_SPECIAL_FUNCTIONS_PRIME_SIEVE_HPP
1010

1111
#include <boost/math/special_functions/prime.hpp>
1212
#include <boost/assert.hpp>
@@ -105,4 +105,4 @@ inline auto prime_range(Z upper_bound, OutputIterator output) -> decltype(output
105105
}
106106
}}
107107

108-
#endif //BOOST_MATH_SPECIAL_FUNCTIONS_PRIME_FUNCTIONS_HPP
108+
#endif //BOOST_MATH_SPECIAL_FUNCTIONS_PRIME_SIEVE_HPP

0 commit comments

Comments
 (0)