mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-12-23 21:25:49 +00:00
fix typo
This commit is contained in:
parent
cc48f3585a
commit
aaf31f2ab8
3 changed files with 3 additions and 5 deletions
|
@ -62,7 +62,7 @@
|
|||
#include <sprout/algorithm/cxx14/copy_while.hpp>
|
||||
#include <sprout/algorithm/cxx14/copy_until.hpp>
|
||||
#include <sprout/algorithm/cxx14/clamp_range.hpp>
|
||||
#include <sprout/algorithm/fixed/random_swap.hpp>
|
||||
#include <sprout/algorithm/cxx14/random_swap.hpp>
|
||||
#include <sprout/algorithm/cxx14/bogo_sort.hpp>
|
||||
#include <sprout/algorithm/cxx14/bozo_sort.hpp>
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@ namespace sprout {
|
|||
typename sprout::container_traits<Container>::size_type size
|
||||
)
|
||||
{
|
||||
typedef typename sprout::container_traits<Container>::value_type value_type;
|
||||
return sprout::remake<Container>(
|
||||
cont, size,
|
||||
(Indexes >= offset && Indexes < offset + size
|
||||
|
@ -51,7 +50,6 @@ namespace sprout {
|
|||
typename sprout::container_traits<Container>::value_type const& phase
|
||||
)
|
||||
{
|
||||
typedef typename sprout::container_traits<Container>::value_type value_type;
|
||||
return sprout::fixed::detail::sinusoid_impl(
|
||||
cont,
|
||||
sprout::detail::sinusoid_value_d(frequency, sprout::size(cont)),
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
=============================================================================*/
|
||||
#ifndef SPROUT_RANGE_ALGORITHM_CXX14_MOVE_BACKWARD_HPP
|
||||
#define SPROUT_RANGE_ALGORITHM_CXX14_COPY_BACKWARD_HPP
|
||||
#define SPROUT_RANGE_ALGORITHM_CXX14_MOVE_BACKWARD_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
|
@ -30,4 +30,4 @@ namespace sprout {
|
|||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_ALGORITHM_CXX14_COPY_BACKWARD_HPP
|
||||
#endif // #ifndef SPROUT_RANGE_ALGORITHM_CXX14_MOVE_BACKWARD_HPP
|
||||
|
|
Loading…
Reference in a new issue