Wrong parentheses.

This commit is contained in:
Marc Glisse 2014-05-09 13:50:16 +02:00
parent 0f31b49301
commit 9cb8801c78
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ template<class R_> struct Vector_to_point : private Store_kernel<R_> {
typedef Vector argument_type;
result_type operator()(argument_type const&v)const{
CI ci(this->kernel());
return CV(this->kernel())(ci(v,Begin_tag(),ci(v,End_tag())));
return CV(this->kernel())(ci(v,Begin_tag()),ci(v,End_tag()));
}
};
}