This commit is contained in:
bolero-MURAKAMI 2014-04-21 19:33:30 +09:00
parent cc48f3585a
commit aaf31f2ab8
3 changed files with 3 additions and 5 deletions

View file

@ -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>

View file

@ -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)),

View file

@ -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