mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
fix for GCC4.8 RC
This commit is contained in:
parent
57bcbc6cdb
commit
2cb55b6b6c
55 changed files with 48 additions and 99 deletions
|
@ -75,7 +75,6 @@ namespace sprout {
|
|||
InputIterator last, BinaryOperation binary_op, typename std::iterator_traits<InputIterator>::difference_type n
|
||||
)
|
||||
{
|
||||
typedef sprout::pair<InputIterator, T> type;
|
||||
return current.first == last ? current
|
||||
: sprout::detail::accumulate_impl(
|
||||
sprout::detail::accumulate_impl_1(
|
||||
|
|
|
@ -52,7 +52,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::sawtooth_impl(
|
||||
cont,
|
||||
frequency,
|
||||
|
|
|
@ -53,7 +53,6 @@ namespace sprout {
|
|||
typename sprout::container_traits<Container>::value_type const& duty
|
||||
)
|
||||
{
|
||||
typedef typename sprout::container_traits<Container>::value_type value_type;
|
||||
return sprout::fixed::detail::square_impl(
|
||||
cont,
|
||||
frequency,
|
||||
|
|
|
@ -55,7 +55,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::triangle_impl(
|
||||
cont,
|
||||
frequency,
|
||||
|
|
|
@ -83,7 +83,6 @@ namespace sprout {
|
|||
InputIterator1 last1, BinaryOperation1 binary_op1, BinaryOperation2 binary_op2, typename std::iterator_traits<InputIterator1>::difference_type n
|
||||
)
|
||||
{
|
||||
typedef sprout::tuples::tuple<InputIterator1, InputIterator2, T> type;
|
||||
return sprout::tuples::get<0>(current) == last1 ? current
|
||||
: sprout::detail::inner_product_impl(
|
||||
sprout::detail::inner_product_impl_1(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue