1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-07-02 14:04:09 +00:00

単純な修正。コンパイル通るようにした

This commit is contained in:
RiSK (sscrisk) 2011-09-02 14:12:44 +09:00
parent da1c8e2820
commit e792d3af15
6 changed files with 8 additions and 8 deletions

View file

@ -20,7 +20,7 @@ namespace sprout {
UnaryOperation op
)
{
return sprout::fixed::transform(sprout::begin(input), sprout::end(input), result, op));
return sprout::fixed::transform(sprout::begin(input), sprout::end(input), result, op);
}
//

View file

@ -20,7 +20,7 @@ namespace sprout {
UnaryOperation op
)
{
return sprout::infit::transform(sprout::begin(input), sprout::end(input), result, op));
return sprout::infit::transform(sprout::begin(input), sprout::end(input), result, op);
}
//

View file

@ -20,7 +20,7 @@ namespace sprout {
UnaryOperation op
)
{
return sprout::outfit::transform(sprout::begin(input), sprout::end(input), result, op));
return sprout::outfit::transform(sprout::begin(input), sprout::end(input), result, op);
}
//